XML file does not update after modifying(disabling some properties)
Unsolved
General and Desktop
-
Hello. I am begginer at use QT Creator but I notice a strange issue. I am making a simple interface:
Notice mouseTracking property is currently disabled. Initially, I had it enabled but then I realised that I do not need it anymore, after that I have disabled it but it did not How can I get it to update the on the editor? See the editor:
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>Widget</class> <widget class="QWidget" name="Widget"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>Widget</string> </property> <widget class="QPushButton" name="Serial_connect"> <property name="geometry"> <rect> <x>600</x> <y>40</y> <width>75</width> <height>24</height> </rect> </property> <property name="text"> <string>Connect</string> </property> </widget> <widget class="QComboBox" name="Serial_list"> <property name="geometry"> <rect> <x>90</x> <y>90</y> <width>69</width> <height>22</height> </rect> </property> <property name="mouseTracking"> <bool>false</bool> </property> <item> <property name="text"> <string>COM</string> </property> </item> </widget> <widget class="QPushButton" name="Scan_button"> <property name="geometry"> <rect> <x>80</x> <y>30</y> <width>91</width> <height>21</height> </rect> </property> <property name="text"> <string>Scan devices</string> </property> </widget> </widget> <resources/> <connections> <connection> <sender>Scan_button</sender> <signal>clicked()</signal> <receiver>Serial_list</receiver> <slot>update()</slot> <hints> <hint type="sourcelabel"> <x>125</x> <y>40</y> </hint> <hint type="destinationlabel"> <x>124</x> <y>100</y> </hint> </hints> </connection> </connections> </ui>
For some reason, it still says that mousetracking is enabled. How can I get this xml to actually display whats currently configured?
-
@lukutis222 said in XML file does not update after modifying(disabling some properties):
<property name="mouseTracking">
<bool>false</bool>
</property>It is disabled in XML, not sure what the problem is?