From 9c48c585b78f6cda4c0841551754237e6bbf32ae Mon Sep 17 00:00:00 2001 From: piotr Date: Thu, 3 Oct 2024 01:10:35 +0200 Subject: [PATCH] add rounded corners --- uicomponents.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uicomponents.go b/uicomponents.go index 6f69964..1128460 100644 --- a/uicomponents.go +++ b/uicomponents.go @@ -620,7 +620,7 @@ func setUpOperationResultWindow(operation string, result string) { vBox.PackStart(lbl, true, true, 12) mRefProvider, _ := gtk.CssProviderNew() - css := "window { background-color: rgba (0, 0, 0, 255); color: #fff; font-weight: bold; border: solid 1px grey}" + css := "window { background-color: rgba (0, 0, 0, 255); color: #fff; font-weight: bold; border: solid 1px grey; border-radius: 5px}" err = mRefProvider.LoadFromData(css) if err != nil { log.Warn(err)