From cece882ca1a2c1ccc1969004741d095946515035 Mon Sep 17 00:00:00 2001 From: Filippo Scognamiglio Date: Wed, 25 Dec 2013 02:29:16 +0100 Subject: [PATCH] colors removed from real terminal. It new passes black and white. --- qml/cool-old-term/TerminalScreen.qml | 6 +++--- qml/cool-old-term/TerminalText.qml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qml/cool-old-term/TerminalScreen.qml b/qml/cool-old-term/TerminalScreen.qml index ca40c3b..3aa8fe3 100644 --- a/qml/cool-old-term/TerminalScreen.qml +++ b/qml/cool-old-term/TerminalScreen.qml @@ -26,7 +26,7 @@ TerminalScreen { Rectangle { id: background anchors.fill: parent - color: shadersettings.background_color + color: "black" } Connections { @@ -116,7 +116,7 @@ TerminalScreen { height: fontHeight x: 0 y: 0 - color: shadersettings.font_color + color: "white" // SequentialAnimation on opacity{ // NumberAnimation{from: 0; to: 1; duration: 500} // NumberAnimation{from: 1; to: 0; duration: 500} @@ -127,7 +127,7 @@ TerminalScreen { Rectangle { id: flash anchors.fill: parent - color: shadersettings.font_color + color: "white" opacity: 0 SequentialAnimation { id: flashAnimation diff --git a/qml/cool-old-term/TerminalText.qml b/qml/cool-old-term/TerminalText.qml index cc51a80..e0d0670 100644 --- a/qml/cool-old-term/TerminalText.qml +++ b/qml/cool-old-term/TerminalText.qml @@ -48,7 +48,7 @@ ObjectDestructItem { id: textElement anchors.fill: parent text: objectHandle.text - color: shadersettings.font_color + color: "white" font: textItem.font textFormat: Text.PlainText }