left sidebar: add detach/attach instructions + keybind

This commit is contained in:
end-4
2025-06-01 18:14:02 +02:00
parent e024f896a6
commit 1099258d07
4 changed files with 30 additions and 10 deletions
@@ -215,18 +215,28 @@ int main(int argc, char* argv[]) {
MaterialSymbol {
Layout.alignment: Qt.AlignHCenter
iconSize: 55
iconSize: 60
color: Appearance.m3colors.m3outline
text: "neurology"
}
StyledText {
id: widgetNameText
Layout.alignment: Qt.AlignHCenter
font.pixelSize: Appearance.font.pixelSize.normal
font.pixelSize: Appearance.font.pixelSize.larger
font.family: Appearance.font.family.title
color: Appearance.m3colors.m3outline
horizontalAlignment: Text.AlignHCenter
text: qsTr("Large language models")
}
StyledText {
id: widgetDescriptionText
Layout.fillWidth: true
font.pixelSize: Appearance.font.pixelSize.small
color: Appearance.m3colors.m3outline
horizontalAlignment: Text.AlignLeft
wrapMode: Text.Wrap
text: qsTr("Ctrl+O to expand the sidebar\nCtrl+P to detach sidebar into a window")
}
}
}
}