mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Let the tag affect other sides too
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33235 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
ae752e13a5
commit
b16e500d5c
@ -549,7 +549,8 @@ void GuiView::initToolbars()
|
||||
if (visibility & Toolbars::BOTTOM) {
|
||||
// Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
|
||||
#if (QT_VERSION >= 0x040202)
|
||||
addToolBarBreak(Qt::BottomToolBarArea);
|
||||
if (newline)
|
||||
addToolBarBreak(Qt::BottomToolBarArea);
|
||||
#endif
|
||||
addToolBar(Qt::BottomToolBarArea, tb);
|
||||
}
|
||||
@ -557,7 +558,8 @@ void GuiView::initToolbars()
|
||||
if (visibility & Toolbars::LEFT) {
|
||||
// Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
|
||||
#if (QT_VERSION >= 0x040202)
|
||||
addToolBarBreak(Qt::LeftToolBarArea);
|
||||
if (newline)
|
||||
addToolBarBreak(Qt::LeftToolBarArea);
|
||||
#endif
|
||||
addToolBar(Qt::LeftToolBarArea, tb);
|
||||
}
|
||||
@ -565,7 +567,8 @@ void GuiView::initToolbars()
|
||||
if (visibility & Toolbars::RIGHT) {
|
||||
// Qt < 4.2.2 cannot handle ToolBarBreak on non-TOP dock.
|
||||
#if (QT_VERSION >= 0x040202)
|
||||
addToolBarBreak(Qt::RightToolBarArea);
|
||||
if (newline)
|
||||
addToolBarBreak(Qt::RightToolBarArea);
|
||||
#endif
|
||||
addToolBar(Qt::RightToolBarArea, tb);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user