Fix splitter between code editor and result view in Execute SQL tab

There was a supposed to be a splitter between the SQL code editor widget
and the result table view widget in the SQL execution areas in the
Execute SQL tab. A splitter like this allows resizing the widgets around
it. Apparently this was broken some time ago (probably by me) and is
fixed by this commit.

See #380 which is partially fixed by this.
This commit is contained in:
Martin Kleusberg
2015-07-08 21:35:18 +02:00
parent 16f037a0ed
commit 6806a9b312

View File

@@ -14,14 +14,12 @@
<string>Form</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<widget class="SqlTextEdit" name="editEditor"/>
</item>
<item>
<widget class="QSplitter" name="splitter">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<widget class="SqlTextEdit" name="editEditor"/>
<widget class="ExtendedTableWidget" name="tableResult">
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
@@ -110,7 +108,7 @@
</customwidget>
<customwidget>
<class>SqlTextEdit</class>
<extends>QAbstractScrollArea</extends>
<extends>QTextEdit</extends>
<header>sqltextedit.h</header>
<container>1</container>
</customwidget>