author | zautrix <zautrix> | 2005-03-10 09:13:29 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-03-10 09:13:29 (UTC) |
commit | 4b05d69b961309df5d56714889c62ca530580914 (patch) (side-by-side diff) | |
tree | c6b7b0651889a88ffe44c570f7e557523cfa1044 | |
parent | f20f8ca063abd322387a72f3f5a65c480f6a4233 (diff) | |
download | kdepimpi-4b05d69b961309df5d56714889c62ca530580914.zip kdepimpi-4b05d69b961309df5d56714889c62ca530580914.tar.gz kdepimpi-4b05d69b961309df5d56714889c62ca530580914.tar.bz2 |
pwmp fix
-rw-r--r-- | bin/kdepim/WhatsNew.txt | 1 | ||||
-rw-r--r-- | pwmanager/pwmanager/pwm.cpp | 13 |
2 files changed, 13 insertions, 1 deletions
diff --git a/bin/kdepim/WhatsNew.txt b/bin/kdepim/WhatsNew.txt index a7b8530..d4b7971 100644 --- a/bin/kdepim/WhatsNew.txt +++ b/bin/kdepim/WhatsNew.txt @@ -6,8 +6,9 @@ PwM/Pi: Added keyboard shorcuts for - toggling summary view (space bar) - delete item (delete + backspace key) - add new item ( i + n key) +Fixed length of info in the title. KO/Pi-KA/Pi: Changed "ME" menu bar entry to an icon. diff --git a/pwmanager/pwmanager/pwm.cpp b/pwmanager/pwmanager/pwm.cpp index a751fce..9c8d12d 100644 --- a/pwmanager/pwmanager/pwm.cpp +++ b/pwmanager/pwmanager/pwm.cpp @@ -488,9 +488,20 @@ void PwM::initMetrics() } void PwM::updateCaption() { - setPlainCaption(curDoc()->getTitle() + " - " PROG_NAME " " PACKAGE_VER); + QString s = curDoc()->getTitle(); + int maxlen = 50; + if ( QApplication::desktop()->width() < 640 ) { + if ( QApplication::desktop()->width() < 320 ) + maxlen = 22; + else + maxlen = 35; + } + if ( s.length() > maxlen ) { + s = "..."+s.right(maxlen -3); + } + setPlainCaption( s ); } void PwM::hideEvent(QHideEvent *) { |