File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ impl eframe::App for MyApp {
163163 {
164164 let current_ime_active = ctx. output ( |o| o. ime . is_some ( ) ) ;
165165 if current_ime_active != self . last_ime_active {
166- crate :: native :: set_soft_input_visible ( current_ime_active) ;
166+ crate :: utils :: jni :: set_soft_input_visible ( current_ime_active) ;
167167 self . last_ime_active = current_ime_active;
168168 }
169169 }
Original file line number Diff line number Diff line change 44
55pub mod app;
66pub mod fonts;
7- pub mod native;
87pub mod settings;
98pub mod settings_window;
109pub mod stage;
1110pub mod structs;
1211pub mod themes;
12+ pub mod utils;
1313
1414/// Android 平台入口点
1515/// 将会编译为 libproject_graph.so,作为一个 Native Activity
Original file line number Diff line number Diff line change 1+ pub mod jni;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments