aboutsummaryrefslogtreecommitdiff
path: root/libLumina/LuminaUtils.cpp
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-11-09 12:45:10 -0500
committerKen Moore <moorekou@gmail.com>2015-11-09 12:45:10 -0500
commite6a725a855208bccab349c6265c6d99af65ecc42 (patch)
tree397fd3c232108c329997462d45327e5c4d1fa4ef /libLumina/LuminaUtils.cpp
parentAdd the WM_PROTOCOLS ICCCM support to the lumina library. (diff)
downloadlumina-e6a725a855208bccab349c6265c6d99af65ecc42.tar.gz
lumina-e6a725a855208bccab349c6265c6d99af65ecc42.tar.bz2
lumina-e6a725a855208bccab349c6265c6d99af65ecc42.zip
A couple changes to Lumina:
1) Add 3 different "view modes" for applications in the start menu: Alphabetical (no categories), Partial Categories (same as before - still on list though), or Categories (need to click the category to go into it and see the applications).2) Fix the theming of partially checked checkboxes and groupboxes. 3) Force the desktop icons to have black text in the theme (no matter which color scheme is in use). 4) Adjust the outlining effects of the desktop icons to use a radial gradient now, so you get a smoother effect which does not steal eye focus as much on contrasting backgrounds.
Diffstat (limited to 'libLumina/LuminaUtils.cpp')
-rw-r--r--libLumina/LuminaUtils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libLumina/LuminaUtils.cpp b/libLumina/LuminaUtils.cpp
index 4bcc548a..39e000a2 100644
--- a/libLumina/LuminaUtils.cpp
+++ b/libLumina/LuminaUtils.cpp
@@ -804,7 +804,7 @@ void ResizeMenu::mouseMoveEvent(QMouseEvent *ev){
if(contents!=0){ contents->setFixedSize(QSize(geom.width()-2, geom.height()-2)); }
break;
default: //NONE
- qDebug() << " - Mouse At:" << ev->pos();
+ //qDebug() << " - Mouse At:" << ev->pos();
//Just adjust the mouse cursor which is shown
if(ev->pos().x()<=1 && ev->pos().x() >= -1){ this->setCursor(Qt::SizeHorCursor); }
else if(ev->pos().x() >= this->width()-1 && ev->pos().x() <= this->width()+1){ this->setCursor(Qt::SizeHorCursor); }
bgstack15