Accepting request 412108 from GNOME:Factory
- Add nautilus-enable-eject-option-on-selection-menu.patch Enable eject option on selection menu (bsc#981950, bgo#768355). config if the user has adjusted it (bsc#979947). OBS-URL: https://build.opensuse.org/request/show/412108 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/nautilus?expand=0&rev=149
This commit is contained in:
commit
170972e4f8
18
nautilus-enable-eject-option-on-selection-menu.patch
Normal file
18
nautilus-enable-eject-option-on-selection-menu.patch
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
diff --git a/src/nautilus-files-view.c b/src/nautilus-files-view.c
|
||||||
|
index fd4f2f5..a4e62d6 100644
|
||||||
|
--- a/src/nautilus-files-view.c
|
||||||
|
+++ b/src/nautilus-files-view.c
|
||||||
|
@@ -6474,7 +6474,12 @@ real_update_actions_state (NautilusFilesView *view)
|
||||||
|
can_move_files && !selection_contains_recent);
|
||||||
|
|
||||||
|
/* Drive menu */
|
||||||
|
- show_mount = show_unmount = show_eject = show_start = show_stop = show_detect_media = FALSE;
|
||||||
|
+ show_mount = (selection != NULL);
|
||||||
|
+ show_unmount = (selection != NULL);
|
||||||
|
+ show_eject = (selection != NULL);
|
||||||
|
+ show_start = (selection != NULL && selection_count == 1);
|
||||||
|
+ show_stop = (selection != NULL && selection_count == 1);
|
||||||
|
+ show_detect_media = (selection != NULL && selection_count == 1);
|
||||||
|
for (l = selection; l != NULL && (show_mount || show_unmount
|
||||||
|
|| show_eject
|
||||||
|
|| show_start || show_stop
|
@ -1,8 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 09:05:18 UTC 2016 - tyang@suse.com
|
||||||
|
|
||||||
|
- Add nautilus-enable-eject-option-on-selection-menu.patch
|
||||||
|
Enable eject option on selection menu (bsc#981950, bgo#768355).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 20 20:18:18 UTC 2016 - mgorse@suse.com
|
Mon Jun 20 20:18:18 UTC 2016 - mgorse@suse.com
|
||||||
|
|
||||||
- Add nautilus-bsc979947.patch: only write zoom level to user
|
- Add nautilus-bsc979947.patch: only write zoom level to user
|
||||||
config if the user has adjusted it (bsc#979947).
|
config if the user has adjusted it (bsc#979947).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jun 14 20:27:01 UTC 2016 - zaitor@opensuse.org
|
Tue Jun 14 20:27:01 UTC 2016 - zaitor@opensuse.org
|
||||||
|
@ -30,6 +30,8 @@ Source99: baselibs.conf
|
|||||||
Patch0: nautilus-adjust-style-priority.patch
|
Patch0: nautilus-adjust-style-priority.patch
|
||||||
# PATCH-FIX-UPSTREAM nautilus-bsc979947.patch bsc#979947 bgo#767878 mgorse@suse.com -- only write zoom level to user configuration if the user has adjusted it.
|
# PATCH-FIX-UPSTREAM nautilus-bsc979947.patch bsc#979947 bgo#767878 mgorse@suse.com -- only write zoom level to user configuration if the user has adjusted it.
|
||||||
Patch1: nautilus-bsc979947.patch
|
Patch1: nautilus-bsc979947.patch
|
||||||
|
# PATCH-FIX-UPSTREAM nautilus-enable-eject-option-on-selection-menu.patch bsc#981950 bgo#768355 tyang@suse.com -- Enable eject option on selection menu
|
||||||
|
Patch2: nautilus-enable-eject-option-on-selection-menu.patch
|
||||||
Url: http://www.gnome.org
|
Url: http://www.gnome.org
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# needed for directory ownership
|
# needed for directory ownership
|
||||||
@ -114,6 +116,7 @@ This package contains development files for nautilus.
|
|||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
|
%patch2 -p1
|
||||||
translation-update-upstream
|
translation-update-upstream
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user