forked from qt-creator/qt-creator
FakeVim: Remove excess frame from Mapping options page
The outer widget was a QGroupBox without a label. That results in a frame/border. This patch changes it to a QWidget. Change-Id: I30fc674818d1983563d385bf06decc1b089aed4c Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
@@ -791,13 +791,13 @@ public:
|
||||
|
||||
private:
|
||||
FakeVimPluginPrivate *m_q;
|
||||
QPointer<QGroupBox> m_widget;
|
||||
QPointer<QWidget> m_widget;
|
||||
};
|
||||
|
||||
QWidget *FakeVimUserCommandsPage::widget()
|
||||
{
|
||||
if (!m_widget) {
|
||||
m_widget = new QGroupBox;
|
||||
m_widget = new QWidget;
|
||||
|
||||
FakeVimUserCommandsModel *model = new FakeVimUserCommandsModel(m_q);
|
||||
QTreeView *widget = new QTreeView;
|
||||
|
Reference in New Issue
Block a user