1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

settings: clamp max content width

This commit is contained in:
bbedward
2025-11-23 01:38:16 -05:00
parent 1c7201fb04
commit 1e7e1c2d78

View File

@@ -182,13 +182,19 @@ FloatingWindow {
}
}
SettingsContent {
id: content
Item {
width: parent.width - sidebar.width
height: parent.height
parentModal: settingsModal
currentIndex: settingsModal.currentTabIndex
SettingsContent {
id: content
width: Math.min(550, parent.width)
height: parent.height
anchors.horizontalCenter: parent.horizontalCenter
parentModal: settingsModal
currentIndex: settingsModal.currentTabIndex
}
}
}
}