mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user