From b0fdc58a07324a672d2125586a029b1eef11ea65 Mon Sep 17 00:00:00 2001 From: Alberto Griggio Date: Thu, 29 Jun 2017 17:48:03 +0200 Subject: [PATCH] do not show the 'send to queue' in simple editor mode Fixes #3945 --- rtgui/editorpanel.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtgui/editorpanel.cc b/rtgui/editorpanel.cc index e9975196f..648004aee 100644 --- a/rtgui/editorpanel.cc +++ b/rtgui/editorpanel.cc @@ -684,7 +684,7 @@ EditorPanel::EditorPanel (FilePanel* filePanel) iops->attach_next_to (*sendtogimp, Gtk::POS_LEFT, 1, 1); } - if (!gimpPlugin) { + if (!gimpPlugin && !simpleEditor) { iops->attach_next_to (*queueimg, Gtk::POS_LEFT, 1, 1); } @@ -1589,7 +1589,7 @@ bool EditorPanel::handleShortcutKey (GdkEventKey* event) return true; case GDK_KEY_b: - if (!simpleEditor) { + if (!gimpPlugin && !simpleEditor) { queueImgPressed(); }