Skip to content

Commit

Permalink
remove dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir authored May 7, 2024
1 parent ef2b861 commit 550fe01
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/platform_impl/gtk/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,9 @@ impl Menu {
// This is the first time this method has been called on this window
// so we need to create the menubar and its parent box
if let Entry::Vacant(e) = self.gtk_menubars.entry(id) {
dbg!("Vacant");
let menu_bar = gtk::MenuBar::new();
e.insert(menu_bar);
} else {
dbg!("Occupied");
return Err(crate::Error::AlreadyInitialized);
}

Expand Down

0 comments on commit 550fe01

Please sign in to comment.