Hello community, here is the log from the commit of package kdebase3 for openSUSE:Factory checked in at 2012-03-02 13:48:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kdebase3 (Old) and /work/SRC/openSUSE:Factory/.kdebase3.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kdebase3", Maintainer is "kde-maintain...@suse.de" Changes: -------- --- /work/SRC/openSUSE:Factory/kdebase3/kdebase3.changes 2012-02-28 14:13:40.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.kdebase3.new/kdebase3.changes 2012-03-02 13:48:14.000000000 +0100 @@ -1,0 +2,6 @@ +Thu Mar 1 16:02:57 UTC 2012 - an...@opensuse.org + +- set default tray icon size to 18 px +- remove arrows from panel applet handles + +------------------------------------------------------------------- New: ---- applet-no-arrow.patch kicker-height.patch systray-icons-style.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kdebase3.spec ++++++ --- /var/tmp/diff_new_pack.iP42fq/_old 2012-03-02 13:48:18.000000000 +0100 +++ /var/tmp/diff_new_pack.iP42fq/_new 2012-03-02 13:48:18.000000000 +0100 @@ -277,6 +277,9 @@ Patch270: kdebase-svn-konq-move.patch Patch271: ksmserver-shutdown-upower.patch Patch272: kickoff-shutdown-upower.patch +Patch273: systray-icons-style.patch +Patch274: applet-no-arrow.patch +Patch275: kicker-height.patch %description This package contains kdebase, one of the basic packages of the K @@ -621,6 +624,9 @@ %patch270 -p4 %patch271 -p1 %patch272 -p1 +%patch273 -p1 +%patch274 -p1 +%patch275 -p1 rm -rf kappfinder rm pics/crystalsvg/cr??-*emacs.png ++++++ applet-no-arrow.patch ++++++ diff -wruN kdebase-3.5.10.orig/kicker/kicker/core/applethandle.cpp kdebase-3.5.10/kicker/kicker/core/applethandle.cpp --- kdebase-3.5.10.orig/kicker/kicker/core/applethandle.cpp 2008-08-19 22:16:56.000000000 +0400 +++ kdebase-3.5.10/kicker/kicker/core/applethandle.cpp 2012-03-01 17:38:54.720182058 +0400 @@ -58,7 +58,7 @@ m_dragBar->installEventFilter(this); m_layout->addWidget(m_dragBar); - if (kapp->authorizeKAction("kicker_rmb")) + /* if (kapp->authorizeKAction("kicker_rmb")) { m_menuButton = new AppletHandleButton( this ); m_menuButton->installEventFilter(this); @@ -67,7 +67,7 @@ connect(m_menuButton, SIGNAL(pressed()), this, SLOT(menuButtonPressed())); QToolTip::add(m_menuButton, i18n("%1 menu").arg(parent->info().name())); - } + } */ QToolTip::add(this, i18n("%1 applet handle").arg(parent->info().name())); resetLayout(); @@ -236,7 +236,7 @@ } } - if (m_menuButton && e->type() == QEvent::MouseButtonPress) +/* if (m_menuButton && e->type() == QEvent::MouseButtonPress) { QMouseEvent* ev = static_cast<QMouseEvent*>(e); if (ev->button() == RightButton) @@ -249,6 +249,20 @@ return true; } + } */ + + if (e->type() == QEvent::MouseButtonPress) + { + QMouseEvent* ev = static_cast<QMouseEvent*>(e); + if (ev->button() == RightButton) + { + if (kapp->authorizeKAction("kicker_rmb")) + { + emit showAppletMenu(); + return true; + } + + } } return QWidget::eventFilter(o, e); // standard event processing ++++++ kicker-height.patch ++++++ diff -wruN kdebase-3.5.10.orig/kicker/libkicker/global.cpp kdebase-3.5.10/kicker/libkicker/global.cpp --- kdebase-3.5.10.orig/kicker/libkicker/global.cpp 2008-08-19 22:16:55.000000000 +0400 +++ kdebase-3.5.10/kicker/libkicker/global.cpp 2012-03-01 23:53:52.430187490 +0400 @@ -145,7 +145,7 @@ break; case KPanelExtension::SizeNormal: - return 46; + return 42; break; case KPanelExtension::SizeLarge: ++++++ systray-icons-style.patch ++++++ diff -wruN kdebase-3.5.10.orig/kicker/applets/systemtray/systemtrayapplet.cpp kdebase-3.5.10/kicker/applets/systemtray/systemtrayapplet.cpp --- kdebase-3.5.10.orig/kicker/applets/systemtray/systemtrayapplet.cpp 2008-08-19 22:16:58.000000000 +0400 +++ kdebase-3.5.10/kicker/applets/systemtray/systemtrayapplet.cpp 2012-02-26 14:17:06.579731598 +0400 @@ -416,7 +416,7 @@ //Note This setting comes from kdeglobal. conf->setGroup("System Tray"); - m_iconSize = conf->readNumEntry("systrayIconWidth", 22); + m_iconSize = conf->readNumEntry("systrayIconWidth", 18); } void SystemTrayApplet::systemTrayWindowAdded( WId w ) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org