From 5b57d9eafe0c386b2cc7fe0ad46a247f1a2fef23 Mon Sep 17 00:00:00 2001 From: SR_team Date: Wed, 31 Oct 2018 16:06:21 +0300 Subject: [PATCH] Fix color codes. Now it compilable --- src/dlangide/ui/newfile.d | 4 ++-- src/dlangide/ui/newfolder.d | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 +}