From 45c7e2dd922d613c886a3118094590623bbd665c Mon Sep 17 00:00:00 2001 From: dbr Date: Mon, 17 Jan 2022 14:47:17 +1100 Subject: [PATCH] ...and once more --- imgui/src/popups.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/imgui/src/popups.rs b/imgui/src/popups.rs index 75d8e49..50c4a75 100644 --- a/imgui/src/popups.rs +++ b/imgui/src/popups.rs @@ -195,10 +195,7 @@ impl Ui { } /// Creates a PopupModal directly. - pub fn popup_modal>( - &self, - str_id: Label, - ) -> PopupModal<'_, '_, Label> { + pub fn popup_modal>(&self, str_id: Label) -> PopupModal<'_, '_, Label> { #[allow(deprecated)] PopupModal::new(self, str_id) }