Improve default value of windows_size in Graphics and Help Windows in Interface Settings.

This commit is contained in:
PersianKnight 2021-03-13 19:09:38 +03:30
parent 42d57ccb92
commit 7c0fe70453
2 changed files with 2 additions and 2 deletions

View File

@ -2554,7 +2554,7 @@ impl Hud {
events.push(Event::ChangeStopAutoWalkOnInput(state));
},
settings_window::Event::ResetInterfaceSettings => {
self.show.help = true;
self.show.help = false;
self.show.debug = false;
events.push(Event::ResetInterfaceSettings);
},

View File

@ -636,7 +636,7 @@ impl Default for GraphicsSettings {
exposure: 1.0,
ambiance: 10.0,
render_mode: RenderMode::default(),
window_size: [1920, 1080],
window_size: [1280, 720],
fullscreen: FullScreenSettings::default(),
lod_detail: 250,
}