aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/panel-plugins
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2016-09-23 14:00:46 -0400
committerKen Moore <ken@pcbsd.org>2016-09-23 14:00:46 -0400
commitb93e0c1cf01ae83652264dd4370f4988c2b88011 (patch)
treec3577ed26e2f90be224821ade8f3adb56cc81c15 /src-qt5/core/lumina-desktop/panel-plugins
parentAdd a new file to be distributed with Lumina: (diff)
downloadlumina-b93e0c1cf01ae83652264dd4370f4988c2b88011.tar.gz
lumina-b93e0c1cf01ae83652264dd4370f4988c2b88011.tar.bz2
lumina-b93e0c1cf01ae83652264dd4370f4988c2b88011.zip
Fix the painting issue with the favorites area on the start menu with all the new changes.
Diffstat (limited to 'src-qt5/core/lumina-desktop/panel-plugins')
-rw-r--r--src-qt5/core/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src-qt5/core/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp b/src-qt5/core/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
index a0624d6b..bfac46c0 100644
--- a/src-qt5/core/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
+++ b/src-qt5/core/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp
@@ -172,6 +172,9 @@ void StartMenu::ClearScrollArea(QScrollArea *area){
//qDebug() << " - Number of Children:" << old->children().count();
//deleteChildren(old); //make sure we *fully* delete these items to save memory
//old->deleteLater();
+ if(area == ui->scroll_favs){
+ area->takeWidget()->deleteLater();
+ }
if(area->widget()==0){
area->setWidget( new QWidget(area) ); //create a new widget in the scroll area
}
@@ -421,10 +424,11 @@ void StartMenu::UpdateFavs(){
else if(type==1){ tmp = favs.filter("::::dir::::"); } //dirs next
else{ tmp = rest; } //everything left over
if(type==1){
+ SortScrollArea(ui->scroll_favs);
//Need to run a special routine for sorting the apps (already in the widget)
//qDebug() << "Sort App Widgets...";
// Since each app actually might have a different name listed within the file
- QLayout *lay = ui->scroll_favs->widget()->layout();
+ /*QLayout *lay = ui->scroll_favs->widget()->layout();
QStringList items;
for(int i=0; i<lay->count(); i++){
items << lay->itemAt(i)->widget()->whatsThis().toLower();
@@ -444,7 +448,8 @@ void StartMenu::UpdateFavs(){
break;
}
}
- }
+ }*/
+
}//end of special app sorting routine
tmp.sort(); //Sort alphabetically by name (dirs/files)
for(int i=0; i<tmp.length(); i++){
@@ -467,6 +472,7 @@ void StartMenu::UpdateFavs(){
}
//QApplication::processEvents();
} //end loop over types
+ ui->scroll_favs->update();
//qDebug() << "End updateFavs";
}
bgstack15