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 a06382c commit ec9731eCopy full SHA for ec9731e
objdiff-gui/src/main.rs
@@ -58,7 +58,10 @@ fn main() -> ExitCode {
58
59
let app_path = std::env::current_exe().ok();
60
let exec_path: Rc<Mutex<Option<PathBuf>>> = Rc::new(Mutex::new(None));
61
- let mut native_options = eframe::NativeOptions::default();
+ let mut native_options = eframe::NativeOptions {
62
+ viewport: egui::ViewportBuilder::default().with_app_id(APP_NAME),
63
+ ..Default::default()
64
+ };
65
match load_icon() {
66
Ok(data) => {
67
native_options.viewport.icon = Some(Arc::new(data));
0 commit comments