-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviewboard.kde.org/r/3254/
-----------------------------------------------------------

Review request for Plasma.


Summary
-------

Since there were no objections on plasma-devel, I'm now posting a review 
request for a patch that changes the icon order in the quicklaunch applet.

Currently, icons are arranged in column major order. Thus, when 5 icons are 
displayed in two rows, the indices are distributed as follows:

+---+---+---+
| 0 | 2 | 4 |
+---+---+---+
| 1 | 3 |
+---+---+

This patch changes the arrangement to row major order instead:

+---+---+---+
| 0 | 1 | 2 |
+---+---+---+
| 3 | 4 |
+---+---+

Additionally, I have removed QuicklaunchLayout::addItem(...). Its only caller - 
QuicklaunchApplet::performUiRefactor() - already knows the number of rows and 
columns, so there is no need to recompute them. In the long term, I'd like to 
remove QuicklaunchLayout and move layouting and drag/drop into a dedicated 
widget class (QuicklaunchIconGrid maybe).


Diffs
-----

  
/trunk/KDE/kdebase/workspace/plasma/generic/applets/quicklaunch/QuicklaunchLayout.h
 1100817 
  
/trunk/KDE/kdebase/workspace/plasma/generic/applets/quicklaunch/QuicklaunchLayout.cpp
 1100882 
  
/trunk/KDE/kdebase/workspace/plasma/generic/applets/quicklaunch/quicklaunchApplet.cpp
 1100902 

Diff: http://reviewboard.kde.org/r/3254/diff


Testing
-------


Thanks,

Ingomar

_______________________________________________
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel

Reply via email to