aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-06-10 08:45:05 -0400
committerKen Moore <moorekou@gmail.com>2016-06-10 08:45:05 -0400
commit23dac2e9c4c1736d9434a8c356b29d64656bf27b (patch)
treede5557760c0ab2e40fb9c5f491a5d5637d98a975
parentMake sure that wildard mimetype matches are given lower priority than exact m... (diff)
downloadlumina-23dac2e9c4c1736d9434a8c356b29d64656bf27b.tar.gz
lumina-23dac2e9c4c1736d9434a8c356b29d64656bf27b.tar.bz2
lumina-23dac2e9c4c1736d9434a8c356b29d64656bf27b.zip
Make sure the text on the terminal is visible.
-rw-r--r--src-qt5/desktop-utils/lumina-terminal/TerminalWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-terminal/TerminalWidget.cpp b/src-qt5/desktop-utils/lumina-terminal/TerminalWidget.cpp
index 9d0162a6..e8f80f88 100644
--- a/src-qt5/desktop-utils/lumina-terminal/TerminalWidget.cpp
+++ b/src-qt5/desktop-utils/lumina-terminal/TerminalWidget.cpp
@@ -18,7 +18,7 @@
TerminalWidget::TerminalWidget(QWidget *parent, QString dir) : QTextEdit(parent){
//Setup the text widget
- this->setStyleSheet("background: black;");
+ this->setStyleSheet("background: black; color: white;");
this->setLineWrapMode(QTextEdit::WidgetWidth);
this->setAcceptRichText(false);
this->setOverwriteMode(true);
bgstack15