Skip to content

Commit 25ca502

Browse files
committed
fix(arch-updater): fix missing right margin in panel table
1 parent 2415d74 commit 25ca502

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

arch-updater/Panel.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Item {
1919

2020
anchors.fill: parent
2121

22-
// Shared column width reference (content area minus outer margins and table inner margins)
23-
readonly property real tableContentWidth: panelContainer.width - 2 * Style.marginL - 2 * Style.marginS
22+
// Shared column width reference (content area minus outer margins, table inner margins, and column spacing)
23+
readonly property real tableContentWidth: panelContainer.width - 2 * Style.marginL - 2 * Style.marginS - 2 * Style.marginS
2424

2525
Rectangle {
2626
id: panelContainer

arch-updater/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "arch-updater",
33
"name": "Arch Updater",
4-
"version": "1.1.1",
4+
"version": "1.1.2",
55
"minNoctaliaVersion": "3.6.0",
66
"author": "Ast",
77
"license": "MIT",

0 commit comments

Comments
 (0)