spacer shouldnt accept tab

This commit is contained in:
Adam D. Ruppe 2018-02-21 09:06:38 -05:00
parent 31470105e3
commit 5c8a6c02a4
1 changed files with 1 additions and 0 deletions

View File

@ -4870,6 +4870,7 @@ class HorizontalSpacer : Widget {
/// ///
this(Widget parent = null) { this(Widget parent = null) {
super(parent); super(parent);
this.tabStop = false;
} }
} }