Fri, 01 Jul 2022 16:46:43 +0300
Fix right click to delete not really working properly
Instead of removing the point that had been added, it would remove
the point that is being drawn, which would cause it to overwrite the
previous point using the new point, causing a bit of a delay
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>CircleToolOptions</class> <widget class="QWidget" name="CircleToolOptions"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>651</width> <height>57</height> </rect> </property> <property name="windowTitle"> <string>Form</string> </property> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QSpinBox" name="segments"> <property name="minimum"> <number>1</number> </property> <property name="maximum"> <number>16</number> </property> <property name="value"> <number>16</number> </property> </widget> </item> <item> <widget class="QLabel" name="label_2"> <property name="text"> <string>/</string> </property> </widget> </item> <item> <widget class="QComboBox" name="divisions"> <property name="editable"> <bool>true</bool> </property> <property name="currentIndex"> <number>1</number> </property> <property name="insertPolicy"> <enum>QComboBox::NoInsert</enum> </property> <item> <property name="text"> <string>8</string> </property> </item> <item> <property name="text"> <string>16</string> </property> </item> <item> <property name="text"> <string>48</string> </property> </item> </widget> </item> <item> <widget class="QLabel" name="ratio"> <property name="minimumSize"> <size> <width>64</width> <height>0</height> </size> </property> <property name="text"> <string>1</string> </property> </widget> </item> <item> <widget class="QComboBox" name="type"/> </item> <item> <spacer name="horizontalSpacer_2"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>40</width> <height>20</height> </size> </property> </spacer> </item> </layout> </widget> <resources/> <connections/> </ui>