Skip to content

Commit

Permalink
Fix new blueprint syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
RealKC committed Jul 19, 2023
1 parent a40a332 commit 64433ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/editor/textdialog.blp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Gtk 4.0;

template KCShotTextInput : Gtk.Box {
template $KCShotTextInput : Gtk.Box {
orientation: vertical;
spacing: 2;

Expand All @@ -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;
Expand Down Expand Up @@ -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;
};
}
}
Expand Down

0 comments on commit 64433ad

Please sign in to comment.