This commit is contained in:
Adam D. Ruppe 2021-03-11 22:33:13 -05:00
parent 05eadcb732
commit 1af3a0d394
1 changed files with 2 additions and 1 deletions

View File

@ -6150,7 +6150,8 @@ class Menu : Window {
HMENU handle; HMENU handle;
/// ///
this(string label, Widget parent = null) { this(string label, Widget parent = null) {
super(parent); // not actually passing the parent since it effs up the drawing
super(cast(Widget) null);// parent);
this.label = label; this.label = label;
handle = CreatePopupMenu(); handle = CreatePopupMenu();
} }