From d7800919909f120c9fa8e4f5e3805371ec263337 Mon Sep 17 00:00:00 2001 From: Richard Kimberly Heck Date: Sat, 1 Jun 2024 12:43:56 -0400 Subject: [PATCH] Fix bug #11796. Toolbars are now locked by default. Unlocked state should be saved by Qt as a session variable. Patch from Daniel. (cherry picked from commit 42a8463aab6100e8209caa8cd137d3c500623729) --- src/frontends/qt/GuiView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/qt/GuiView.cpp b/src/frontends/qt/GuiView.cpp index a20edd1cfe..fc71a00842 100644 --- a/src/frontends/qt/GuiView.cpp +++ b/src/frontends/qt/GuiView.cpp @@ -567,7 +567,7 @@ GuiView::GuiView(int id) : d(*new GuiViewPrivate(this)), id_(id), closing_(false), busy_(0), command_execute_(false), minibuffer_focus_(false), word_count_enabled_(true), char_count_enabled_(true), char_nb_count_enabled_(false), - toolbarsMovable_(true), devel_mode_(false) + toolbarsMovable_(false), devel_mode_(false) { connect(this, SIGNAL(bufferViewChanged()), this, SLOT(onBufferViewChanged())); @@ -1200,7 +1200,7 @@ void GuiView::initToolbar(string const & name) if (visibility & Toolbars::ON) tb->setVisible(true); - tb->setMovable(true); + tb->setMovable(false); } -- 2.39.5