diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-12 03:25:00 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-12 03:25:00 +0200 |
| commit | c71a08e2b44521590a3f48e6cd6b15394890b48f (patch) | |
| tree | c7528b48c3a35166a91f0bb92f96acae5d009eee /src/mainwindow.hpp | |
| parent | 0c57280c4eec7ddce569f89cb35de917d8b4d08e (diff) | |
| download | kristall-c71a08e2b44521590a3f48e6cd6b15394890b48f.tar.gz | |
Fixes two overflow bugs in labels. No weird scaling based on links anymore.
Diffstat (limited to 'src/mainwindow.hpp')
| -rw-r--r-- | src/mainwindow.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mainwindow.hpp b/src/mainwindow.hpp index f125551..174f06a 100644 --- a/src/mainwindow.hpp +++ b/src/mainwindow.hpp @@ -10,6 +10,8 @@ #include "geminirenderer.hpp" #include "protocolsetup.hpp" +#include "elidelabel.hpp" + QT_BEGIN_NAMESPACE namespace Ui { class MainWindow; } QT_END_NAMESPACE @@ -96,7 +98,7 @@ public: private: Ui::MainWindow *ui; - QLabel * url_status; + ElideLabel * url_status; QLabel * file_size; QLabel * file_mime; QLabel * load_time; |
