From 1562ce6415eb8a03c31c728032a48d86c800e4a1 Mon Sep 17 00:00:00 2001 From: Vaxry Date: Sun, 13 Oct 2024 16:50:24 +0100 Subject: [PATCH] all: format --- qml/main.qml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/qml/main.qml b/qml/main.qml index 16bc960..ac91308 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -204,12 +204,16 @@ ApplicationWindow { Button { text: "Copy Hyprland System Info" - onClicked: (e) => {hsi.copySystemInfo();} + onClicked: (e) => { + hsi.copySystemInfo(); + } } Button { text: "Copy Hyprland Version" - onClicked: (e) => {hsi.copyVersion();} + onClicked: (e) => { + hsi.copyVersion(); + } } }