[yast-commit] r66318 - in /trunk/qt-pkg: VERSION.cmake package/yast2-qt-pkg.changes src/YQPkgObjList.cc
![](https://seccdn.libravatar.org/avatar/8ea7e9df6cc79a33898e71283aa37a3c.jpg?s=120&d=mm&r=g)
Author: tgoettlicher Date: Fri Oct 7 12:25:08 2011 New Revision: 66318 URL: http://svn.opensuse.org/viewcvs/yast?rev=66318&view=rev Log: - Fixed bnc#718197: YaST2 Qt package manager opens RMB context menus at a wrong position, usability issue (2.21.10) Modified: trunk/qt-pkg/VERSION.cmake trunk/qt-pkg/package/yast2-qt-pkg.changes trunk/qt-pkg/src/YQPkgObjList.cc Modified: trunk/qt-pkg/VERSION.cmake URL: http://svn.opensuse.org/viewcvs/yast/trunk/qt-pkg/VERSION.cmake?rev=66318&r1... ============================================================================== --- trunk/qt-pkg/VERSION.cmake (original) +++ trunk/qt-pkg/VERSION.cmake Fri Oct 7 12:25:08 2011 @@ -1,3 +1,3 @@ SET(VERSION_MAJOR "2") SET(VERSION_MINOR "21") -SET(VERSION_PATCH "9") +SET(VERSION_PATCH "10") Modified: trunk/qt-pkg/package/yast2-qt-pkg.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/qt-pkg/package/yast2-qt-pkg.chang... ============================================================================== --- trunk/qt-pkg/package/yast2-qt-pkg.changes (original) +++ trunk/qt-pkg/package/yast2-qt-pkg.changes Fri Oct 7 12:25:08 2011 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Fri Oct 7 12:24:19 CEST 2011 - tgoettlicher@suse.de + +- Fixed bnc#718197: context menus at a wrong position +- 2.21.10 + +------------------------------------------------------------------- Thu Oct 6 13:39:33 CEST 2011 - tgoettlicher@suse.de - Made settings persistant (fate #307220 ) Modified: trunk/qt-pkg/src/YQPkgObjList.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/qt-pkg/src/YQPkgObjList.cc?rev=66... ============================================================================== --- trunk/qt-pkg/src/YQPkgObjList.cc (original) +++ trunk/qt-pkg/src/YQPkgObjList.cc Fri Oct 7 12:25:08 2011 @@ -1688,7 +1688,7 @@ installedContextMenu() : notInstalledContextMenu(); if ( contextMenu ) - contextMenu->popup( mapToGlobal (pos) ); + contextMenu->popup( mapToGlobal( pos ) + QPoint( 0, item->treeWidget()->header()->height() ) ); } } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
tgoettlicher@svn2.opensuse.org