We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1862383 commit 4891644Copy full SHA for 4891644
apps/notation_viewer_cn/Cargo.toml
@@ -9,9 +9,11 @@ identifier = "fun.notation.viewer_cn"
9
resources = ["assets"]
10
11
[features]
12
+default = [
13
+ "notation_bevy/chinese",
14
+]
15
native = [
16
"notation_bevy/native",
- "notation_bevy/chinese",
17
]
18
dev = [
19
"notation_bevy/dev",
crates/notation_bevy/src/app/app_state.rs
@@ -32,7 +32,13 @@ impl NotationAppState {
32
tab_path,
33
tab: None,
34
show_control: false,
35
+
36
+ #[cfg(debug_assertions)]
37
show_help: false,
38
39
+ #[cfg(not(debug_assertions))]
40
+ show_help: true,
41
42
parse_error: None,
43
debug_str: None,
44
_despawn_delay_seconds: 0.0,
0 commit comments