mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-11-01 05:50:05 +00:00
Added cursor icon always on option to general settings
This commit is contained in:
parent
40b3ecce16
commit
64b679a002
6 changed files with 43 additions and 9 deletions
|
|
@ -137,6 +137,7 @@ public:
|
|||
&showMapCenter_,
|
||||
&showMapLogo_,
|
||||
&updateNotificationsEnabled_,
|
||||
&cursorIconAlwaysOn_,
|
||||
&debugEnabled_,
|
||||
&alertAudioSoundFile_,
|
||||
&alertAudioLocationMethod_,
|
||||
|
|
@ -251,6 +252,7 @@ public:
|
|||
settings::SettingsInterface<bool> showMapCenter_ {};
|
||||
settings::SettingsInterface<bool> showMapLogo_ {};
|
||||
settings::SettingsInterface<bool> updateNotificationsEnabled_ {};
|
||||
settings::SettingsInterface<bool> cursorIconAlwaysOn_ {};
|
||||
settings::SettingsInterface<bool> debugEnabled_ {};
|
||||
|
||||
std::unordered_map<std::string, settings::SettingsInterface<std::string>>
|
||||
|
|
@ -762,6 +764,10 @@ void SettingsDialogImpl::SetupGeneralTab()
|
|||
updateNotificationsEnabled_.SetEditWidget(
|
||||
self_->ui->enableUpdateNotificationsCheckBox);
|
||||
|
||||
cursorIconAlwaysOn_.SetSettingsVariable(
|
||||
generalSettings.cursor_icon_always_on());
|
||||
cursorIconAlwaysOn_.SetEditWidget(self_->ui->cursorIconAlwaysOnCheckBox);
|
||||
|
||||
debugEnabled_.SetSettingsVariable(generalSettings.debug_enabled());
|
||||
debugEnabled_.SetEditWidget(self_->ui->debugEnabledCheckBox);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -135,9 +135,9 @@
|
|||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>-133</y>
|
||||
<y>-246</y>
|
||||
<width>511</width>
|
||||
<height>676</height>
|
||||
<height>703</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
|
|
@ -590,6 +590,19 @@
|
|||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="cursorIconAlwaysOnCheckBox">
|
||||
<property name="acceptDrops">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Multi-Pane Cursor Marker Always On</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="debugEnabledCheckBox">
|
||||
<property name="text">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue