Update default window/tool layout with proper percentage sizes

This commit is contained in:
baldurk
2016-09-29 15:24:21 +02:00
parent 2bc8effd3d
commit 563c217a0d
2 changed files with 10 additions and 8 deletions
+3 -2
View File
@@ -18,8 +18,9 @@ MainWindow::MainWindow(Core *core) : QMainWindow(NULL), ui(new Ui::MainWindow),
TextureViewer *textureviewer = new TextureViewer(core);
ui->toolWindowManager->addToolWindow(
textureviewer, ToolWindowManager::AreaReference(ToolWindowManager::RightOf,
ui->toolWindowManager->areaOf(eventbrowser)));
textureviewer,
ToolWindowManager::AreaReference(ToolWindowManager::RightOf,
ui->toolWindowManager->areaOf(eventbrowser), 0.75f));
ui->toolWindowManager->setRubberBandLineWidth(50);
}