diff options
author | Arno <arno@disconnect.de> | 2018-10-13 05:17:54 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-10-13 05:17:54 +0200 |
commit | c794c91a4f265560c1cc58731300f36d7bfb957e (patch) | |
tree | 25914bfc6bcb8c4df5ed59009b92ddcc46edfa73 /copydialog.h | |
parent | b65ab2398dcbc2f5c9b1ec33ac0bbf863e3df0ca (diff) | |
download | BeetPlayer-c794c91a4f265560c1cc58731300f36d7bfb957e.tar.gz BeetPlayer-c794c91a4f265560c1cc58731300f36d7bfb957e.tar.bz2 BeetPlayer-c794c91a4f265560c1cc58731300f36d7bfb957e.zip |
Turn the result Label into QTextEdit
QTextEdit scrolls automatically, and doesn't resize beyond the screen,
so it's the proper choice. Also make it readonly.
Diffstat (limited to 'copydialog.h')
-rw-r--r-- | copydialog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/copydialog.h b/copydialog.h index 0eed637..10d46b9 100644 --- a/copydialog.h +++ b/copydialog.h @@ -4,7 +4,7 @@ #include <QDialog> class QLineEdit; -class QLabel; +class QTextEdit; class CopyDialog : public QDialog { public: @@ -27,7 +27,7 @@ class CopyDialog : public QDialog { QLineEdit *mSrcE; QLineEdit *mDstE; QLineEdit *mFolderE; - QLabel *mResultL; + QTextEdit *mResultTE; QStringList mSources; }; |