feat: set wayland app_id
This commit is contained in:
parent
578cc7723c
commit
cf9b557446
1 changed files with 5 additions and 2 deletions
|
@ -6,7 +6,7 @@ use std::{
|
||||||
path::Path,
|
path::Path,
|
||||||
};
|
};
|
||||||
|
|
||||||
use eframe::egui::{self, Key, TextEdit};
|
use eframe::egui::{self, Key, TextEdit, ViewportBuilder};
|
||||||
|
|
||||||
enum RunError {
|
enum RunError {
|
||||||
HomeDir(homedir::GetHomeError),
|
HomeDir(homedir::GetHomeError),
|
||||||
|
@ -45,7 +45,10 @@ fn main() -> Result<(), RunError> {
|
||||||
.open(Path::join(&home_dir, "todo.txt"))
|
.open(Path::join(&home_dir, "todo.txt"))
|
||||||
.map_err(RunError::OpenFile)?;
|
.map_err(RunError::OpenFile)?;
|
||||||
|
|
||||||
let native_options = eframe::NativeOptions::default();
|
let native_options = eframe::NativeOptions {
|
||||||
|
viewport: ViewportBuilder::default().with_app_id("todoodoo"),
|
||||||
|
..Default::default()
|
||||||
|
};
|
||||||
eframe::run_native(
|
eframe::run_native(
|
||||||
"To-DooDoo",
|
"To-DooDoo",
|
||||||
native_options,
|
native_options,
|
||||||
|
|
Loading…
Reference in a new issue