Skip to content

Commit

Permalink
little UI tweaking
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed May 25, 2023
1 parent 5200fde commit 74dd082
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions elevenclock/settings.py
Expand Up @@ -266,7 +266,7 @@ def ww():
self.customClockAction.setChecked(self.getSettings("CustomClockClickAction"))
#region Extra option for the "toggle_setting_click" action (customClockClickToggleAction)
self.customClockClickToggleAction = QSettingsComboBox(_("Choose the setting to toggle when clock is clicked"))
self.customClockClickToggleAction.setStyleSheet("border-top: 0px solid transparent;")
self.customClockClickToggleAction.setStyleSheet("#stBtn{border-top: 0px solid transparent;border-radius: 0px;}")
self.customClockClickToggleAction.loadItems(toggleactions.keys())
self.customClockClickToggleAction.setEnabled(True)
try:
Expand Down Expand Up @@ -311,7 +311,7 @@ def customClickActionValueChanged(v):
self.customDoubleClickAction.setChecked(self.getSettings("CustomClockDoubleClickAction"))
#region Extra option for the "toggle_setting_dblclick" action (customDoubleClickToggleAction)
self.customDoubleClickToggleAction = QSettingsComboBox(_("Choose the setting to toggle when double-clicked"))
self.customDoubleClickToggleAction.setStyleSheet("border-top: 0px solid transparent;")
self.customDoubleClickToggleAction.setStyleSheet("#stBtn{border-top: 0px solid transparent;border-radius: 0px;}")
self.customDoubleClickToggleAction.loadItems(toggleactions.keys())
self.customDoubleClickToggleAction.setEnabled(True)
try:
Expand Down

0 comments on commit 74dd082

Please sign in to comment.