Only toggle egui via F7 instead of needing to also have debug toggle on with F3

This commit is contained in:
Imbris 2022-01-24 01:40:55 -05:00
parent 086b4bece8
commit 57781eac27

View File

@ -90,5 +90,5 @@ impl Default for InterfaceSettings {
#[cfg(feature = "egui-ui")]
impl InterfaceSettings {
pub fn egui_enabled(&self) -> bool { self.toggle_debug && self.toggle_egui_debug }
pub fn egui_enabled(&self) -> bool { self.toggle_egui_debug }
}