Skip to content

Commit

Permalink
Fix splitter between code editor and result view in Execute SQL tab
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
MKleusberg committed Jul 8, 2015
1 parent 16f037a commit 6806a9b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/SqlExecutionArea.ui
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -110,7 +108,7 @@
</customwidget>
<customwidget>
<class>SqlTextEdit</class>
<extends>QAbstractScrollArea</extends>
<extends>QTextEdit</extends>
<header>sqltextedit.h</header>
<container>1</container>
</customwidget>
Expand Down

0 comments on commit 6806a9b

Please sign in to comment.