the sizes of things were wrong with a bad env variable

This commit is contained in:
Chris Cochrun 2023-01-13 05:49:15 -06:00
parent 8ec7c16e20
commit 29348d59e7
4 changed files with 9 additions and 13 deletions

View file

@ -79,8 +79,8 @@ FocusScope {
Kirigami.Icon {
source: "arrow-left"
implicitWidth: Kirigami.Units.largeSpacing * 20
implicitHeight: Kirigami.Units.largeSpacing * 40
implicitWidth: Kirigami.Units.gridUnit * 7
implicitHeight: Kirigami.Units.gridUnit * 10
anchors.right: previewSlide.left
anchors.verticalCenter: parent.verticalCenter
/* Layout.alignment: Qt.AlignRight */
@ -93,7 +93,7 @@ FocusScope {
Presenter.Slide {
id: previewSlide
implicitWidth: Kirigami.Units.largeSpacing * 100
implicitWidth: Kirigami.Units.gridUnit * 32
implicitHeight: width / 16 * 9
/* minimumWidth: 300 */
anchors.centerIn: parent
@ -110,8 +110,8 @@ FocusScope {
Kirigami.Icon {
source: "arrow-right"
implicitWidth: Kirigami.Units.largeSpacing * 20
implicitHeight: Kirigami.Units.largeSpacing * 40
implicitWidth: Kirigami.Units.gridUnit * 7
implicitHeight: Kirigami.Units.gridUnit * 10
anchors.left: previewSlide.right
anchors.verticalCenter: parent.verticalCenter
/* Layout.alignment: Qt.AlignLeft */