From dd7e078525c29f8bfef815f4fe1a23c61b8b0abc Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Mon, 7 Feb 2022 13:14:15 +0100 Subject: [PATCH] Fixing flatpak issue with the KDE SDK that makes button have no width on startup. --- CHANGELOG.md | 2 +- .../ad5001/LogarithmPlotter/ObjectLists/ObjectCreationGrid.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 30802db..4248eff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -106,7 +106,7 @@ **Fixed bugs** - * Confined packages (snapcraft & flatpak) won't show error messages related to update checks. + * Sandboxed packages (snapcraft and flatpak) won't show error messages related to update checks. * Equations of the form (x + y) / z were not being simplified properly. ## v0.1.2 (30 Sep 2021) diff --git a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/ObjectLists/ObjectCreationGrid.qml b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/ObjectLists/ObjectCreationGrid.qml index b4f95d7..8088730 100644 --- a/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/ObjectLists/ObjectCreationGrid.qml +++ b/LogarithmPlotter/qml/eu/ad5001/LogarithmPlotter/ObjectLists/ObjectCreationGrid.qml @@ -50,7 +50,7 @@ Column { Button { id: createBtn - width: parent.width/3 + width: 96 visible: Objects.types[modelData].createable() height: visible ? width*0.8 : 0 // The KDE SDK is kinda buggy, so it respects neither specified color nor display propreties.