Issue 1472: fix so multi-open brings up tabs in same order as in file browser

This commit is contained in:
torger
2014-08-27 18:32:28 +02:00
parent fdbe5d793a
commit 2061576c42
2 changed files with 61 additions and 28 deletions

8
rtgui/filepanel.h Normal file → Executable file
View File

@@ -51,6 +51,14 @@ class FilePanel : public Gtk::HPaned,
RTWindow* parent;
Gtk::Notebook* rightNotebook;
struct pendingLoad {
bool complete;
ProgressConnector<rtengine::InitialImage*> *pc;
Thumbnail *thm;
};
MyMutex pendingLoadMutex;
std::vector<struct pendingLoad*> pendingLoads;
int error;
public:
FilePanel ();