fixed bug in setting the queue running/paused icons for METM layouts

Fixes #4323
This commit is contained in:
Alberto Griggio 2018-01-23 08:58:31 +01:00
parent 09d020cca3
commit e5fe9b47df

View File

@ -228,7 +228,7 @@ void BatchQueuePanel::updateTab (int qsize, int forceOrientation)
if (!qsize ) {
grid->attach_next_to(*Gtk::manage (new RTImage ("processing.png")), Gtk::POS_RIGHT, 1, 1);
grid->attach_next_to(*Gtk::manage (new Gtk::Label (M("MAIN_FRAME_BATCHQUEUE") )), Gtk::POS_RIGHT, 1, 1);
} else if (!qStartStop->get_active()) {
} else if (qStartStop->get_active()) {
grid->attach_next_to(*Gtk::manage (new RTImage ("processing-play.png")), Gtk::POS_RIGHT, 1, 1);
grid->attach_next_to(*Gtk::manage (new Gtk::Label (M("MAIN_FRAME_BATCHQUEUE") + " [" + Glib::ustring::format( qsize ) + "]" )), Gtk::POS_RIGHT, 1, 1);
} else {