summaryrefslogtreecommitdiff
path: root/core/applets/irdaapplet
Unidiff
Diffstat (limited to 'core/applets/irdaapplet') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/irdaapplet/irda.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/core/applets/irdaapplet/irda.cpp b/core/applets/irdaapplet/irda.cpp
index 5b23330..d986df4 100644
--- a/core/applets/irdaapplet/irda.cpp
+++ b/core/applets/irdaapplet/irda.cpp
@@ -195,8 +195,11 @@ void IrdaApplet::mousePressEvent( QMouseEvent *) {
195 menu->insertItem( tr("Enable Receive"), 4 ); 195 menu->insertItem( tr("Enable Receive"), 4 );
196 } 196 }
197 197
198 QPoint p = mapToGlobal( QPoint(1, menu->sizeHint().height()-1) ); 198 QPoint p = mapToGlobal ( QPoint ( 0, 0 ));
199 ret = menu->exec(p, 2); 199 QSize s = menu-> sizeHint ( );
200 ret = menu->exec( QPoint (
201 p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ),
202 p. y ( ) - s. height ( ) ), 0);
200 203
201 qDebug("ret was %d\n", ret); 204 qDebug("ret was %d\n", ret);
202 205