do not show the 'send to queue' in simple editor mode

Fixes #3945
This commit is contained in:
Alberto Griggio
2017-06-29 17:48:03 +02:00
parent 86c5cc1826
commit b0fdc58a07

View File

@@ -684,7 +684,7 @@ EditorPanel::EditorPanel (FilePanel* filePanel)
iops->attach_next_to (*sendtogimp, Gtk::POS_LEFT, 1, 1); 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); iops->attach_next_to (*queueimg, Gtk::POS_LEFT, 1, 1);
} }
@@ -1589,7 +1589,7 @@ bool EditorPanel::handleShortcutKey (GdkEventKey* event)
return true; return true;
case GDK_KEY_b: case GDK_KEY_b:
if (!simpleEditor) { if (!gimpPlugin && !simpleEditor) {
queueImgPressed(); queueImgPressed();
} }