diff options
author | Ken Moore <moorekou@gmail.com> | 2015-09-21 09:05:44 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-09-21 09:05:44 -0400 |
commit | 253b0548f6c72e9aa024d949b8338aa6867fec10 (patch) | |
tree | 3101d34c5a402ba949cfc99516a2027dc6d32d0a | |
parent | oops, accidentally removed the URL detection from lumina-open with the earlie... (diff) | |
download | lumina-253b0548f6c72e9aa024d949b8338aa6867fec10.tar.gz lumina-253b0548f6c72e9aa024d949b8338aa6867fec10.tar.bz2 lumina-253b0548f6c72e9aa024d949b8338aa6867fec10.zip |
A couple quick tweaks:
1) The XCB event filter should not use the Damage ID in event detection, because each individual tray app uses their own damage ID and not the tray ID.
2) Fix the "back" button icon in the start menu plugin.
-rw-r--r-- | lumina-desktop/LXcbEventFilter.cpp | 4 | ||||
-rw-r--r-- | lumina-desktop/panel-plugins/systemstart/StartMenu.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lumina-desktop/LXcbEventFilter.cpp b/lumina-desktop/LXcbEventFilter.cpp index f7a11dad..aa38002b 100644 --- a/lumina-desktop/LXcbEventFilter.cpp +++ b/lumina-desktop/LXcbEventFilter.cpp @@ -96,9 +96,9 @@ bool XCBEventFilter::nativeEventFilter(const QByteArray &eventType, void *messag //============================== default: if(TrayDmgFlag!=0){ - if( (ev->response_type & ~0x80)==TrayDmgFlag){ + //if( (ev->response_type & ~0x80)==TrayDmgFlag){ session->WindowDamageEvent( ((xcb_damage_notify_event_t*)ev)->drawable ); - } + //} }/*else{ qDebug() << "Default Event:" << (ev->response_type & ~0x80); }*/ diff --git a/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp b/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp index 6c39c835..74243efa 100644 --- a/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp +++ b/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp @@ -39,7 +39,7 @@ void StartMenu::UpdateAll(){ ui->tool_launch_desksettings->setIcon(LXDG::findIcon("preferences-desktop","")); ui->tool_lock->setIcon(LXDG::findIcon("system-lock-screen","")); ui->tool_goto_logout->setIcon(LXDG::findIcon("system-log-out","")); - ui->tool_back->setIcon(LXDG::findIcon("go-back","")); + ui->tool_back->setIcon(LXDG::findIcon("go-previous","")); ui->tool_launch_deskinfo->setIcon(LXDG::findIcon("system-help","")); ui->label_bright_icon->setPixmap( LXDG::findIcon("preferences-system-power-management","").pixmap(ui->tool_goto_apps->iconSize()) ); |