author | mickeyl <mickeyl> | 2004-08-25 13:50:57 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-08-25 13:50:57 (UTC) |
commit | e71d630b32fc3ecd2213bd27742c3b7a9a943867 (patch) (unidiff) | |
tree | 2312abbb7608db23b05861b71daed26ce1ba0073 | |
parent | a4c678976a3e3fd5afec1a9595a1a80ed621a5e2 (diff) | |
download | opie-e71d630b32fc3ecd2213bd27742c3b7a9a943867.zip opie-e71d630b32fc3ecd2213bd27742c3b7a9a943867.tar.gz opie-e71d630b32fc3ecd2213bd27742c3b7a9a943867.tar.bz2 |
fix #1401 and upgrade ChangeLog
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | core/launcher/launcherview.cpp | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -1,32 +1,35 @@ | |||
1 | 2004-??-??The Opie Team <opie@handhelds.org> | 1 | 2004-??-??The Opie Team <opie@handhelds.org> |
2 | 2 | ||
3 | New Features | 3 | New Features |
4 | ------------ | 4 | ------------ |
5 | * Fifteen gained configurable number of items (zecke) | 5 | * Fifteen gained configurable number of items (zecke) |
6 | * Fifteen can have custom background images (zecke) | 6 | * Fifteen can have custom background images (zecke) |
7 | * Added daemonizing capabilities to QWS Server [via Qt/Embedded] (mickeyl) | 7 | * Added daemonizing capabilities to QWS Server [via Qt/Embedded] (mickeyl) |
8 | * Integrated the new security framework into libopie2 (zecke,clem) | 8 | * Integrated the new security framework into libopie2 (zecke,clem) |
9 | * Converted the launcher to use the new security framework (zecke) | 9 | * Converted the launcher to use the new security framework (zecke) |
10 | * Backup can now handle custom locations for backup and restore (ar) | 10 | * Backup can now handle custom locations for backup and restore (ar) |
11 | * Implemented right-on-hold feedback (wimpie,zecke) | ||
12 | * Lots of new features in opie-reader (tim,pohly) | ||
11 | 13 | ||
12 | Fixed Bugs | 14 | Fixed Bugs |
13 | -------- | 15 | -------- |
14 | * #1225 - Fixed repeated light flashing on Zaurus with keyz (mickeyl) | 16 | * #1225 - Fixed repeated light flashing on Zaurus with keyz (mickeyl) |
15 | * #1361 - Fixed auto upercase in Opie-Addressbook (eilers) | 17 | * #1361 - Fixed auto upercase in Opie-Addressbook (eilers) |
16 | * #1370 - Pimconverter now reacts on cancel key (eilers) | 18 | * #1370 - Pimconverter now reacts on cancel key (eilers) |
19 | * #1401 - Scrollbar is now only visible if necessary in DocTab (mickeyl) | ||
17 | 20 | ||
18 | 2004-07-06The Opie Team <opie@handhelds.org> | 21 | 2004-07-06The Opie Team <opie@handhelds.org> |
19 | 22 | ||
20 | * Tagged as Version 1.1.4 (devel) | 23 | * Tagged as Version 1.1.4 (devel) |
21 | 24 | ||
22 | New Features | 25 | New Features |
23 | ------------ | 26 | ------------ |
24 | * Added four themes courtesy Robert Griebl (http://www.softforge.de/zstyle) | 27 | * Added four themes courtesy Robert Griebl (http://www.softforge.de/zstyle) |
25 | * Added Conversion tool for pim-data (eilers) | 28 | * Added Conversion tool for pim-data (eilers) |
26 | * Introduced new OPimAccessFactory and OBackendFactory which simplyfies database access (eilers) | 29 | * Introduced new OPimAccessFactory and OBackendFactory which simplyfies database access (eilers) |
27 | * Modified the PIM API for providing generic use of OPimRecords (eilers) | 30 | * Modified the PIM API for providing generic use of OPimRecords (eilers) |
28 | * Clicking on the application symbol now iterates over the application's top level widgets if already raised (zecke) | 31 | * Clicking on the application symbol now iterates over the application's top level widgets if already raised (zecke) |
29 | 32 | ||
30 | Fixed Bugs | 33 | Fixed Bugs |
31 | -------- | 34 | -------- |
32 | * #1068 - Country Drop Down Box Off Screen | 35 | * #1068 - Country Drop Down Box Off Screen |
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp index e86f389..0d0f2cb 100644 --- a/core/launcher/launcherview.cpp +++ b/core/launcher/launcherview.cpp | |||
@@ -645,34 +645,32 @@ void LauncherView::hideIcons() | |||
645 | void LauncherView::setToolsEnabled(bool y) | 645 | void LauncherView::setToolsEnabled(bool y) |
646 | { | 646 | { |
647 | if ( !y != !tools ) { | 647 | if ( !y != !tools ) { |
648 | if ( y ) { | 648 | if ( y ) { |
649 | tools = new QHBox(this); | 649 | tools = new QHBox(this); |
650 | 650 | ||
651 | // Type filter | 651 | // Type filter |
652 | typemb = new QComboBox(tools); | 652 | typemb = new QComboBox(tools); |
653 | QSizePolicy p = typemb->sizePolicy(); | 653 | QSizePolicy p = typemb->sizePolicy(); |
654 | p.setHorData(QSizePolicy::Expanding); | 654 | p.setHorData(QSizePolicy::Expanding); |
655 | typemb->setSizePolicy(p); | 655 | typemb->setSizePolicy(p); |
656 | 656 | ||
657 | // Category filter | 657 | // Category filter |
658 | updateTools(); | 658 | updateTools(); |
659 | tools->show(); | 659 | tools->show(); |
660 | 660 | ||
661 | // Always show vscrollbar | ||
662 | icons->setVScrollBarMode( QScrollView::AlwaysOn ); | ||
663 | } else { | 661 | } else { |
664 | delete tools; | 662 | delete tools; |
665 | tools = 0; | 663 | tools = 0; |
666 | } | 664 | } |
667 | } | 665 | } |
668 | } | 666 | } |
669 | 667 | ||
670 | void LauncherView::updateTools() | 668 | void LauncherView::updateTools() |
671 | { | 669 | { |
672 | disconnect( typemb, SIGNAL(activated(int)), | 670 | disconnect( typemb, SIGNAL(activated(int)), |
673 | this, SLOT(showType(int)) ); | 671 | this, SLOT(showType(int)) ); |
674 | if ( catmb ) disconnect( catmb, SIGNAL(signalSelected(int)), | 672 | if ( catmb ) disconnect( catmb, SIGNAL(signalSelected(int)), |
675 | this, SLOT(showCategory(int)) ); | 673 | this, SLOT(showCategory(int)) ); |
676 | 674 | ||
677 | // ### I want to remove this | 675 | // ### I want to remove this |
678 | icons->updateCategoriesAndMimeTypes(); | 676 | icons->updateCategoriesAndMimeTypes(); |