Added ability to open images for editing from the Batch Queue tab. Patch by Leanid (prizzrak), issue 2689

This commit is contained in:
DrSlony
2015-02-26 19:12:09 +01:00
parent a1d638b1f5
commit 3c435f094d
34 changed files with 78 additions and 7 deletions

View File

@@ -49,9 +49,9 @@ static Glib::ustring makeFolderLabel(Glib::ustring path)
return path;
}
BatchQueuePanel::BatchQueuePanel () {
BatchQueuePanel::BatchQueuePanel (FileCatalog* aFileCatalog) {
batchQueue = Gtk::manage( new BatchQueue() );
batchQueue = Gtk::manage( new BatchQueue(aFileCatalog) );
// construct batch queue panel with the extra "start" and "stop" button
Gtk::VBox* batchQueueButtonBox = Gtk::manage (new Gtk::VBox);