Skip to content

Commit

Permalink
feat: Default style first
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano committed May 2, 2024
1 parent 72f5ab9 commit 5b20f02
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions data/resources/ui/main-window.blp
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@ menu main_menu {
label: _("_Style");

item {
label: _("_Light");
label: _("S_ystem");
action: "app.color-scheme";
target: "force-light";
target: "default";
}

item {
label: _("_Dark");
label: _("_Light");
action: "app.color-scheme";
target: "force-dark";
target: "force-light";
}

item {
label: _("S_ystem");
label: _("_Dark");
action: "app.color-scheme";
target: "default";
target: "force-dark";
}
}
}
Expand Down

0 comments on commit 5b20f02

Please sign in to comment.