From 56237d534e716961962b51377e7b8db6a62d288f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole-Andr=C3=A9=20Rodlie?= Date: Wed, 2 Oct 2024 18:38:58 +0200 Subject: [PATCH] UI fix: make sure default tool mode is set Make sure default tool mode (object) is set in the UI before starting a new project, else you might end up with the wrong tool mode selected. Example: you are in text mode, you (for whatever reason) make or load a new project, the text tool is still "active" (as in selected in the UI) but you are actually in object mode since that is the default mode for any new project. --- src/app/GUI/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/GUI/mainwindow.cpp b/src/app/GUI/mainwindow.cpp index 378cf2f05..b16bbea78 100644 --- a/src/app/GUI/mainwindow.cpp +++ b/src/app/GUI/mainwindow.cpp @@ -1370,6 +1370,7 @@ void MainWindow::askInstallRenderPresets() void MainWindow::openWelcomeDialog() { mStackWidget->setCurrentIndex(mStackIndexWelcome); + mActions.setMovePathMode(); } void MainWindow::closeWelcomeDialog()