Add option for disabling bars on currently playing track

Fixes #972
This commit is contained in:
Jonas Kvinge
2022-06-09 00:50:21 +02:00
parent 9b743e55d1
commit 25e48d6cae
4 changed files with 124 additions and 52 deletions

View File

@@ -21,10 +21,17 @@
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="checkbox_barscurrenttrack">
<property name="text">
<string>Show bars on the currently playing track</string>
</property>
</widget>
</item>
<item>
<widget class="QCheckBox" name="checkbox_glowcurrenttrack">
<property name="text">
<string>Show a glowing animation on the current track</string>
<string>Show a glowing animation on the currently playing track</string>
</property>
</widget>
</item>
@@ -176,5 +183,22 @@
</layout>
</widget>
<resources/>
<connections/>
<connections>
<connection>
<sender>checkbox_barscurrenttrack</sender>
<signal>toggled(bool)</signal>
<receiver>checkbox_glowcurrenttrack</receiver>
<slot>setEnabled(bool)</slot>
<hints>
<hint type="sourcelabel">
<x>258</x>
<y>55</y>
</hint>
<hint type="destinationlabel">
<x>258</x>
<y>88</y>
</hint>
</hints>
</connection>
</connections>
</ui>