aboutsummaryrefslogtreecommitdiff
path: root/components/TextBlock.qml
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2018-03-31 04:37:33 -0500
committerluigi1111 <luigi1111w@gmail.com>2018-03-31 04:37:33 -0500
commita090c724f8c7411b3c4abc64c8d4b4c1a96a9346 (patch)
tree1c91223dd243221d644a0b22d2dc94563b264fdf /components/TextBlock.qml
parent959c2fcc32d515f90cb39933689a37418197a095 (diff)
parente638ed0272ca042f3ad77b680665a91ed8a35cce (diff)
downloadmonzero-gui-a090c724f8c7411b3c4abc64c8d4b4c1a96a9346.tar.gz
monzero-gui-a090c724f8c7411b3c4abc64c8d4b4c1a96a9346.tar.xz
monzero-gui-a090c724f8c7411b3c4abc64c8d4b4c1a96a9346.zip
Merge pull request #1217
e638ed0 Explicitly import MoneroComponents; prevent namespace pollution
Diffstat (limited to 'components/TextBlock.qml')
-rw-r--r--components/TextBlock.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/TextBlock.qml b/components/TextBlock.qml
index 875a4bf7..e06c6ae9 100644
--- a/components/TextBlock.qml
+++ b/components/TextBlock.qml
@@ -1,10 +1,10 @@
import QtQuick 2.0
-import "." 1.0
+import "../components" as MoneroComponents
TextEdit {
- color: Style.defaultFontColor
- font.family: Style.fontRegular.name
+ color: MoneroComponents.Style.defaultFontColor
+ font.family: MoneroComponents.Style.fontRegular.name
wrapMode: Text.Wrap
readOnly: true
selectByMouse: true