diff options
author | Ken Moore <moorekou@gmail.com> | 2016-06-10 21:30:48 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2016-06-10 21:30:48 -0400 |
commit | 46a47814c9e729d3a17d24a946b2f512d7e6d700 (patch) | |
tree | a5a3b6ab8f6944df284436188004292fbd2c9d15 /src-qt5/core/lumina-desktop/LWinInfo.cpp | |
parent | Change to using the "start-here-lumina" icon instead, "start-here" was alread... (diff) | |
download | lumina-46a47814c9e729d3a17d24a946b2f512d7e6d700.tar.gz lumina-46a47814c9e729d3a17d24a946b2f512d7e6d700.tar.bz2 lumina-46a47814c9e729d3a17d24a946b2f512d7e6d700.zip |
Ensure a more uniform size for task manager buttons.
Diffstat (limited to 'src-qt5/core/lumina-desktop/LWinInfo.cpp')
-rw-r--r-- | src-qt5/core/lumina-desktop/LWinInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-qt5/core/lumina-desktop/LWinInfo.cpp b/src-qt5/core/lumina-desktop/LWinInfo.cpp index 3ff0c2d7..6a6cea0b 100644 --- a/src-qt5/core/lumina-desktop/LWinInfo.cpp +++ b/src-qt5/core/lumina-desktop/LWinInfo.cpp @@ -21,7 +21,7 @@ QString LWinInfo::text(){ if(nm.simplified().isEmpty()){ nm = LSession::handle()->XCB->OldWindowIconName(window); } if(nm.simplified().isEmpty()){ nm = LSession::handle()->XCB->OldWindowName(window); } //Make sure that the text is a reasonable size (40 char limit) - if(nm.length()>40){ nm = nm.left(40)+"..."; } + //if(nm.length()>40){ nm = nm.left(40)+"..."; } return nm; } @@ -45,4 +45,4 @@ LXCB::WINDOWVISIBILITY LWinInfo::status(bool update){ cstate = LSession::handle()->XCB->WindowState(window); } return cstate; -}
\ No newline at end of file +} |