mirror of https://github.com/buggins/dlangide.git
Merge pull request #388 from sr-tream/master
Fix color codes. Now it compilable
This commit is contained in:
commit
98c8d835ea
|
@ -97,7 +97,7 @@ class NewFileDlg : Dialog {
|
||||||
TextWidget { text: OPTION_FILE_PATH }
|
TextWidget { text: OPTION_FILE_PATH }
|
||||||
EditLine { id: edFilePath; text: ""; layoutWidth: fill; readOnly: true }
|
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) {
|
} catch (Exception e) {
|
||||||
|
|
|
@ -61,7 +61,7 @@ class NewFolderDialog : Dialog {
|
||||||
CheckBox { id: makePackage }
|
CheckBox { id: makePackage }
|
||||||
TextWidget { text: OPTION_MAKE_PACKAGE}
|
TextWidget { text: OPTION_MAKE_PACKAGE}
|
||||||
}
|
}
|
||||||
TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: #FF0000 }
|
TextWidget { id: statusText; text: ""; layoutWidth: fill; textColor: 0xFF0000 }
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
Loading…
Reference in New Issue