mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Remove the ':' in a few places
Changed my mind, I think it's more confusing to use the colon for properties when they aren't really properties.
This commit is contained in:
parent
e759569c3f
commit
981c2e3b7d
10 changed files with 14 additions and 17 deletions
|
@ -2,7 +2,7 @@ using Gtk 4.0;
|
|||
|
||||
FileFilter {
|
||||
name: "File Filter Name";
|
||||
mime-types: ["text/plain", "image/ *"];
|
||||
patterns: ["*.txt"];
|
||||
suffixes: ["png"];
|
||||
mime-types ["text/plain", "image/ *"];
|
||||
patterns ["*.txt"];
|
||||
suffixes ["png"];
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@ using Gtk 4.0;
|
|||
|
||||
SizeGroup {
|
||||
mode: horizontal;
|
||||
widgets: [label, button];
|
||||
widgets [label, button];
|
||||
}
|
||||
|
||||
Label label {}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using Gtk 4.0;
|
||||
|
||||
Label {
|
||||
styles: ["class-1", "class-2"];
|
||||
styles ["class-1", "class-2"];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue