diff --git a/voxygen/src/main.rs b/voxygen/src/main.rs index b9195961f0..a7a911580f 100644 --- a/voxygen/src/main.rs +++ b/voxygen/src/main.rs @@ -99,6 +99,7 @@ fn main() { // Set up panic handler to relay swish panic messages to the user let settings_clone = settings.clone(); + let default_hook = panic::take_hook(); panic::set_hook(Box::new(move |panic_info| { let msg = format!(" \ A critical error has occured and Voxygen has been forced to terminate in an unusual manner. Details about the error can be found below. @@ -126,6 +127,8 @@ The information below is intended for developers and testers. log::error!("VOXYGEN HAS PANICKED\n\n{}", msg); msgbox::create("Voxygen has panicked", &msg, msgbox::IconType::ERROR); + + default_hook(panic_info); })); let mut global_state = GlobalState { settings, window }; diff --git a/voxygen/src/ui/mod.rs b/voxygen/src/ui/mod.rs index 394aa06174..4b008057b8 100644 --- a/voxygen/src/ui/mod.rs +++ b/voxygen/src/ui/mod.rs @@ -609,8 +609,13 @@ impl Ui { self.scale.window_resized(new_dims, renderer); let (w, h) = self.scale.scaled_window_size().into_tuple(); self.ui.handle_event(Input::Resize(w, h)); - self.cache - .clear_graphic_cache(renderer, renderer.get_resolution().map(|e| e * 4)); + + let res = renderer.get_resolution(); + // Avoid panic in graphic cache when minimizing + if res.x > 0 && res.y > 0 { + self.cache + .clear_graphic_cache(renderer, renderer.get_resolution().map(|e| e * 4)); + } // TODO: probably need to resize glyph cache, see conrod's gfx backend for reference } }