##// END OF EJS Templates
Fix missing property required for the drag of variable
trabillard -
r854:ed174e24d277
parent child
Show More
@@ -1,31 +1,37
1 <?xml version="1.0" encoding="UTF-8"?>
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
2 <ui version="4.0">
3 <class>VariableInspectorWidget</class>
3 <class>VariableInspectorWidget</class>
4 <widget class="QWidget" name="VariableInspectorWidget">
4 <widget class="QWidget" name="VariableInspectorWidget">
5 <property name="geometry">
5 <property name="geometry">
6 <rect>
6 <rect>
7 <x>0</x>
7 <x>0</x>
8 <y>0</y>
8 <y>0</y>
9 <width>400</width>
9 <width>400</width>
10 <height>300</height>
10 <height>300</height>
11 </rect>
11 </rect>
12 </property>
12 </property>
13 <property name="windowTitle">
13 <property name="windowTitle">
14 <string>Variables</string>
14 <string>Variables</string>
15 </property>
15 </property>
16 <layout class="QGridLayout" name="gridLayout">
16 <layout class="QGridLayout" name="gridLayout">
17 <item row="0" column="0">
17 <item row="0" column="0">
18 <widget class="QTableView" name="tableView">
18 <widget class="QTableView" name="tableView">
19 <property name="dragEnabled">
20 <bool>true</bool>
21 </property>
22 <property name="dragDropMode">
23 <enum>QAbstractItemView::DragDrop</enum>
24 </property>
19 <property name="sortingEnabled">
25 <property name="sortingEnabled">
20 <bool>true</bool>
26 <bool>true</bool>
21 </property>
27 </property>
22 <attribute name="horizontalHeaderStretchLastSection">
28 <attribute name="horizontalHeaderStretchLastSection">
23 <bool>true</bool>
29 <bool>true</bool>
24 </attribute>
30 </attribute>
25 </widget>
31 </widget>
26 </item>
32 </item>
27 </layout>
33 </layout>
28 </widget>
34 </widget>
29 <resources/>
35 <resources/>
30 <connections/>
36 <connections/>
31 </ui>
37 </ui>
General Comments 0
You need to be logged in to leave comments. Login now