Enhanced progress bar. Fixes filmstrip auto-height as a side effect. See issue #331

This commit is contained in:
Oliver Duis
2010-11-13 08:36:01 +01:00
parent ae5efade89
commit d0717b8b85
3 changed files with 30 additions and 25 deletions

View File

@@ -343,8 +343,7 @@ void RTWindow::MoveFileBrowserToMain()
FileCatalog *fCatalog = fpanel->fileCatalog;
epanel->catalogPane->remove(*fCatalog);
fpanel->ribbonPane->add(*fCatalog);
fCatalog->fileBrowser->enableTabMode(false);
fCatalog->redrawAll();
fCatalog->enableTabMode(false);
}
}
@@ -355,8 +354,7 @@ void RTWindow::MoveFileBrowserToEditor()
FileCatalog *fCatalog = fpanel->fileCatalog;
fpanel->ribbonPane->remove(*fCatalog);
epanel->catalogPane->add(*fCatalog);
fCatalog->fileBrowser->enableTabMode(true);
fCatalog->redrawAll();
fCatalog->enableTabMode(true);
fCatalog->refreshHeight();
}
}