diff --git a/src/dlangide/ui/newfile.d b/src/dlangide/ui/newfile.d index 35db948..5c91725 100644 --- a/src/dlangide/ui/newfile.d +++ b/src/dlangide/ui/newfile.d @@ -97,7 +97,7 @@ class NewFileDlg : Dialog { TextWidget { text: OPTION_FILE_PATH } EditLine { id: edFilePath; text: ""; layoutWidth: fill; readOnly: true } } - TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: #FF0000 } + TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: 0xFF0000 } } }); } catch (Exception e) { @@ -394,4 +394,4 @@ private bool isSubdirOf(string path, string basePath) { return ch == '/' || ch == '\\'; } return false; -} \ No newline at end of file +} diff --git a/src/dlangide/ui/newfolder.d b/src/dlangide/ui/newfolder.d index ececa10..d4a11f6 100644 --- a/src/dlangide/ui/newfolder.d +++ b/src/dlangide/ui/newfolder.d @@ -61,7 +61,7 @@ class NewFolderDialog : Dialog { CheckBox { id: makePackage } TextWidget { text: OPTION_MAKE_PACKAGE} } - TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: #FF0000 } + TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: 0xFF0000 } } }); } catch (Exception e) { @@ -183,4 +183,4 @@ class NewFolderDialog : Dialog { } super.close(newaction); } -} \ No newline at end of file +}