mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 15:13:16 +00:00
Actually include the name of the mod in proxy's name.
This commit is contained in:
parent
f802c31fd0
commit
78f45aa6a8
1 changed files with 3 additions and 2 deletions
|
@ -36,11 +36,12 @@ async fn main() -> Result<(), eframe::Error> {
|
||||||
};
|
};
|
||||||
|
|
||||||
eframe::run_native(
|
eframe::run_native(
|
||||||
"Noita Proxy",
|
"Noita Proxy", // Don't change that, it defines where settings are stored.
|
||||||
NativeOptions {
|
NativeOptions {
|
||||||
viewport: ViewportBuilder::default()
|
viewport: ViewportBuilder::default()
|
||||||
.with_min_inner_size([800.0, 600.0])
|
.with_min_inner_size([800.0, 600.0])
|
||||||
.with_icon(icon),
|
.with_icon(icon)
|
||||||
|
.with_title("Noita Entangled Worlds Proxy"),
|
||||||
follow_system_theme: false,
|
follow_system_theme: false,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue