Skip to content

Commit

Permalink
Added config to swap default icon
Browse files Browse the repository at this point in the history
  • Loading branch information
lolcabanon committed Feb 28, 2023
1 parent 03f88ff commit 68f1f34
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions package/contents/ui/ConfigGeneral.qml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import QtQuick.Controls 1.0
Item {
property alias cfg_showIconsOnly: showIconsOnly.checked
property alias cfg_useVerticalLayout: useVerticalLayout.checked
property alias cfg_defaultIconName: defaultIconName.currentText

ColumnLayout {
Layout.fillWidth: true
Expand All @@ -36,5 +37,13 @@ Item {
id: useVerticalLayout
text: i18n("Use vertical layout")
}
Label {
text: i18n("Default icon")
topPadding: 25
}
ComboBox {
id: defaultIconName
model: ["audio-speakers-symbolic", "audio-headphones", "audio-card"]
}
}
}

0 comments on commit 68f1f34

Please sign in to comment.