-rw-r--r-- | core/launcher/launcherview.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp index 0df949e..764f088 100644 --- a/core/launcher/launcherview.cpp +++ b/core/launcher/launcherview.cpp @@ -451,20 +451,22 @@ void LauncherView::setToolsEnabled(bool y) { if ( !y != !tools ) { if ( y ) { tools = new QHBox(this); // Type filter typemb = new MenuButton(tools); typemb->setLabel(tr("Type: %1")); - + typemb->setFixedHeight ( 20 ); + // Category filter catmb = new CategorySelect(tools); - + catmb->setFixedHeight ( 20 ); + updateTools(); tools->show(); } else { delete tools; tools = 0; } } } |