lux-shell/components/composite/ThemeComboBox.qml
2025-09-18 21:16:15 -04:00

13 lines
257 B
QML

import qs.components
import qs.config
import QtQuick
StyledComboBox {
id: control
currentIndex: Theme.themes.indexOf(Theme.currentTheme)
model: Theme.themes
onActivated: index => {
Theme.currentTheme = Theme.themes[index];
}
}