From 74a8ad3f80bcb4be9a769e6ac9af29b1659e7033 Mon Sep 17 00:00:00 2001 From: sheaf Date: Sun, 3 Nov 2024 11:51:41 +0100 Subject: [PATCH] align visibility/locked buttons to end --- src/app/MetaBrush/UI/StrokeTreeView.hs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/MetaBrush/UI/StrokeTreeView.hs b/src/app/MetaBrush/UI/StrokeTreeView.hs index e276c2c..1d3239d 100644 --- a/src/app/MetaBrush/UI/StrokeTreeView.hs +++ b/src/app/MetaBrush/UI/StrokeTreeView.hs @@ -349,12 +349,15 @@ newLayerViewWidget = do itemLabel <- editableLabelNew " " GTK.boxAppend contentBox itemLabel + GTK.widgetSetHalign itemLabel GTK.AlignStart + GTK.widgetSetHexpand itemLabel True visibleButton <- GTK.buttonNew lockedButton <- GTK.buttonNew GTK.boxAppend contentBox visibleButton GTK.boxAppend contentBox lockedButton - + GTK.widgetSetHalign visibleButton GTK.AlignEnd + GTK.widgetSetHalign lockedButton GTK.AlignEnd widgetAddClass visibleButton "strokeButton" widgetAddClass lockedButton "strokeButton"