From 64433ad2d47b648ad6eec6b507f54e0895c5b128 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C8=9Bca=20Dumitru?= Date: Wed, 19 Jul 2023 13:28:09 +0300 Subject: [PATCH] Fix new blueprint syntax errors --- src/editor/textdialog.blp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/editor/textdialog.blp b/src/editor/textdialog.blp index 5a97082..0981bed 100644 --- a/src/editor/textdialog.blp +++ b/src/editor/textdialog.blp @@ -1,6 +1,6 @@ using Gtk 4.0; -template KCShotTextInput : Gtk.Box { +template $KCShotTextInput : Gtk.Box { orientation: vertical; spacing: 2; @@ -20,7 +20,7 @@ template KCShotTextInput : Gtk.Box { width-request: 25; height-request: 25; - clicked => on_colour_button_clicked() swapped; + clicked => $on_colour_button_clicked() swapped; child: Gtk.DrawingArea colour_button_drawing_area { accessible-role: img; @@ -49,7 +49,7 @@ template KCShotTextInput : Gtk.Box { wrap-mode: word; buffer: Gtk.TextBuffer { - changed => on_input_textbuffer_changed() swapped; + changed => $on_input_textbuffer_changed() swapped; }; } }