Merge pull request from sr-tream/master

Fix color codes. Now it compilable
This commit is contained in:
Vadim Lopatin 2018-11-26 08:34:21 +03:00 committed by GitHub
commit 98c8d835ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions
src/dlangide/ui

View File

@ -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;
}
}

View File

@ -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);
}
}
}