mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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 42a8463aab
)
This commit is contained in:
parent
26ab818033
commit
d780091990
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user