aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <[email protected]>2009-04-07 10:26:22 +0200
committerThorbjørn Lindeijer <[email protected]>2009-04-07 10:26:22 +0200
commit4567752529170610c352e79bd6eedf8c253bbd32 (patch)
tree307189b38216a12ec58fc882d021b801fe0da896
parent3c91cd8b3818012541c1b2c54f0bc8f001db5a1c (diff)
Make sure the frame at the bottom is hidden by default
Showed up as a double horizontal line at the bottom that only disappeared after entering and exiting the FakeVim mode.
-rw-r--r--src/plugins/coreplugin/editormanager/editorview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/coreplugin/editormanager/editorview.cpp b/src/plugins/coreplugin/editormanager/editorview.cpp
index 92ed402dcbc..930a20c2dfd 100644
--- a/src/plugins/coreplugin/editormanager/editorview.cpp
+++ b/src/plugins/coreplugin/editormanager/editorview.cpp
@@ -419,11 +419,11 @@ EditorView::EditorView(EditorModel *model, QWidget *parent) :
m_statusWidgetButton->setText(tr("Placeholder"));
hbox->addWidget(m_statusWidgetButton);
+ m_statusHLine->setVisible(false);
m_statusWidget->setVisible(false);
tl->addWidget(m_statusHLine);
tl->addWidget(m_statusWidget);
}
-
}
EditorView::~EditorView()