Skip to content

Commit b6ed75b

Browse files
committed
Remove trailing spaces
1 parent a81fb23 commit b6ed75b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ int main(int argc, char **argv)
77
ui->on_request_increase_value([&]{
88
ui->set_counter(ui->get_counter() + 1);
99
});
10-
10+
1111
ui->run();
1212
return 0;
1313
}

ui/appwindow.slint

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ import { Button, VerticalBox } from "std-widgets.slint";
33
export component AppWindow inherits Window {
44
in-out property<int> counter: 42;
55
callback request-increase-value();
6-
VerticalBox {
6+
VerticalBox {
77
Text {
88
text: "Counter: \{root.counter}";
99
}
1010
Button {
1111
text: "Increase value";
12-
clicked => {
12+
clicked => {
1313
root.request-increase-value();
1414
}
1515
}

0 commit comments

Comments
 (0)