From 9e2512dac0a7979aac441e4f58731745f56c5ff6 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Mon, 21 Jul 2014 13:52:25 +0200 Subject: [PATCH] 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 --- src/plugins/fakevim/fakevimplugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/fakevim/fakevimplugin.cpp b/src/plugins/fakevim/fakevimplugin.cpp index a9457a9a33d..c38af9ed125 100644 --- a/src/plugins/fakevim/fakevimplugin.cpp +++ b/src/plugins/fakevim/fakevimplugin.cpp @@ -791,13 +791,13 @@ public: private: FakeVimPluginPrivate *m_q; - QPointer m_widget; + QPointer 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;