Wed, 25 May 2022 20:36:34 +0300
Fix pick() picking from weird places on the screen with high DPI scaling
glReadPixels reads data from the frame buffer, which contains data after
high DPI scaling, so any reads to that need to take this scaling into account
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>SettingsEditor</class> <widget class="QDialog" name="SettingsEditor"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>574</width> <height>416</height> </rect> </property> <property name="windowTitle"> <string>Dialog</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QTabWidget" name="tabWidget"> <property name="currentIndex"> <number>0</number> </property> <widget class="QWidget" name="tabGeneral"> <attribute name="title"> <string>General</string> </attribute> <layout class="QVBoxLayout" name="verticalLayout_3"> <item> <widget class="QGroupBox" name="groupBox"> <property name="title"> <string>Interface</string> </property> <layout class="QFormLayout" name="formLayout"> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>Language:</string> </property> </widget> </item> <item row="0" column="1"> <layout class="QHBoxLayout" name="horizontalLayout_2"> <item> <widget class="QComboBox" name="language"> <item> <property name="text"> <string>System language</string> </property> </item> <item> <property name="text"> <string>English</string> </property> </item> </widget> </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> </item> </layout> </widget> </item> <item> <widget class="QGroupBox" name="groupBox_2"> <property name="title"> <string>Rendering</string> </property> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <layout class="QFormLayout" name="formLayout_2"> <item row="0" column="0"> <widget class="QLabel" name="label_2"> <property name="text"> <string>Main colour:</string> </property> </widget> </item> <item row="0" column="1"> <widget class="ColorButton" name="mainColorButton"> <property name="text"> <string/> </property> </widget> </item> <item row="2" column="0"> <widget class="QLabel" name="label_3"> <property name="text"> <string>Background colour:</string> </property> </widget> </item> <item row="2" column="1"> <widget class="ColorButton" name="backgroundColorButton"> <property name="text"> <string/> </property> </widget> </item> <item row="4" column="0"> <widget class="QLabel" name="label_4"> <property name="text"> <string>Line thickness:</string> </property> </widget> </item> <item row="4" column="1"> <widget class="QDoubleSpinBox" name="lineThickness"/> </item> <item row="5" column="0"> <widget class="QCheckBox" name="lineAntiAliasing"> <property name="text"> <string>Line anti-aliasing</string> </property> </widget> </item> <item row="1" column="1"> <widget class="ColorButton" name="selectedColorButton"> <property name="text"> <string/> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="label_5"> <property name="text"> <string>Selected colour:</string> </property> </widget> </item> </layout> </item> <item> <spacer name="horizontalSpacer_3"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>316</width> <height>20</height> </size> </property> </spacer> </item> </layout> </widget> </item> <item> <spacer name="verticalSpacer"> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>20</width> <height>40</height> </size> </property> </spacer> </item> </layout> </widget> <widget class="QWidget" name="tabLdrawLibraries"> <attribute name="title"> <string>LDraw parts libraries</string> </attribute> </widget> <widget class="QWidget" name="tab"> <attribute name="title"> <string>Keyboard shortcuts</string> </attribute> <layout class="QVBoxLayout" name="verticalLayout_2"> <item> <widget class="QTableView" name="keyboardShortcutsView"/> </item> </layout> </widget> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <customwidgets> <customwidget> <class>ColorButton</class> <extends>QPushButton</extends> <header>widgets/colorbutton.h</header> </customwidget> </customwidgets> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>SettingsEditor</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>227</x> <y>394</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>SettingsEditor</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>295</x> <y>400</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>