Browse Source

fix form select

221V 1 month ago
parent
commit
e18a668528
1 changed files with 2 additions and 1 deletions
  1. 2 1
      source/app.d

+ 2 - 1
source/app.d

@@ -36,7 +36,8 @@ extern (C) int UIAppMain(string[] args) {
                 TextWidget { text: "path to git repo" }
                 EditLine { id: edit1; text: "todo read default path from toml file"; layoutWidth: fill }
                 //ComboEdit { id: type1; text: ""; minWidth: 100pt; items: ["Exclude", "Include"] }
-                ComboEdit { id: type1; text: ""; items: ["Exclude", "Include"] }
+                //ComboEdit { id: type1; text: ""; items: ["Exclude", "Include"] }
+                ComboBox { id: type1; text: ""; items: ["Exclude", "Include"] }
                 //TextWidget { text: "param 2" }
                 EditLine { id: edit2; text: "*.md, *.MD"; layoutWidth: fill }
                 Button { id: btnRun; text: "Run" }