@Jeremy Is this really a upstream bug. This is for Unity-Quicklist which is patched by Ubuntu.
See here: http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/vivid /gnome-screenshot/vivid- proposed/view/head:/debian/patches/update_unity_list.patch Same patch is being used for zesty as well. I created a separate patch to overwrite that. (Or I can just modify "update_unity_list.patch" and provide that as a new patch). But it's a Ubuntu's patch. -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to gnome-screenshot in Ubuntu. https://bugs.launchpad.net/bugs/1606974 Title: Quicklist menu action doesn't respect global delay (Zesty) Status in One Hundred Papercuts: New Status in gnome-screenshot package in Ubuntu: Incomplete Bug description: It doesn't respect global delay. The reason is that it using following commands for quicklist actions in /usr/share/applications/org.gnome.Screenshot.desktop: [Desktop Action screen-shot] Name=Take a Screenshot of the Whole Screen Exec=gnome-screenshot [Desktop Action window-shot] Name=Take a Screenshot of the Current Window Exec=gnome-screenshot -w These exec commands can be modified to respect global delay parameter. Patch: --- a/src/org.gnome.Screenshot.desktop.in +++ b/src/org.gnome.Screenshot.desktop.in @@ -18,11 +18,11 @@ [Desktop Action screen-shot] Name=Take a Screenshot of the Whole Screen -Exec=gnome-screenshot +Exec=sh -c "gnome-screenshot -d $(gsettings get org.gnome.gnome-screenshot delay)" [Desktop Action window-shot] Name=Take a Screenshot of the Current Window -Exec=gnome-screenshot -w +Exec=sh -c "gnome-screenshot -w -d $(gsettings get org.gnome.gnome-screenshot delay)" [Desktop Action area-shot] Name=Take a Screenshot of a Selected Area To manage notifications about this bug go to: https://bugs.launchpad.net/hundredpapercuts/+bug/1606974/+subscriptions -- Mailing list: https://launchpad.net/~desktop-packages Post to : desktop-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~desktop-packages More help : https://help.launchpad.net/ListHelp