diff options
author | Ken Moore <moorekou@gmail.com> | 2016-06-10 08:45:05 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-06-10 08:45:05 -0400 |
commit | 23dac2e9c4c1736d9434a8c356b29d64656bf27b (patch) | |
tree | de5557760c0ab2e40fb9c5f491a5d5637d98a975 /src-qt5/desktop-utils | |
parent | Make sure that wildard mimetype matches are given lower priority than exact m... (diff) | |
download | lumina-23dac2e9c4c1736d9434a8c356b29d64656bf27b.tar.gz lumina-23dac2e9c4c1736d9434a8c356b29d64656bf27b.tar.bz2 lumina-23dac2e9c4c1736d9434a8c356b29d64656bf27b.zip |
Make sure the text on the terminal is visible.
Diffstat (limited to 'src-qt5/desktop-utils')
-rw-r--r-- | src-qt5/desktop-utils/lumina-terminal/TerminalWidget.cpp | 2 |
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); |