Merge pull request #388 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

View File

@ -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) {

View File

@ -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) {