Commit 829b5a92 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: limit the size of the comboBox for network open.

It behaves badly on Win32
parent c5d86459
...@@ -60,6 +60,12 @@ p > span { color: #838383; } ...@@ -60,6 +60,12 @@ p > span { color: #838383; }
</item> </item>
<item row="1" column="0"> <item row="1" column="0">
<widget class="QComboBox" name="urlComboBox"> <widget class="QComboBox" name="urlComboBox">
<property name="maximumSize">
<size>
<width>600</width>
<height>16777215</height>
</size>
</property>
<property name="editable"> <property name="editable">
<bool>true</bool> <bool>true</bool>
</property> </property>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment