diff options
Diffstat (limited to 'src/daemon/NotificationsService.cpp')
-rw-r--r-- | src/daemon/NotificationsService.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/daemon/NotificationsService.cpp b/src/daemon/NotificationsService.cpp index cf3c8a4..1fefa11 100644 --- a/src/daemon/NotificationsService.cpp +++ b/src/daemon/NotificationsService.cpp @@ -115,8 +115,11 @@ void NotificationsService::NotifyAsync( notificationMap[id]->setActions(actions); notificationMap[id]->setHints(hints); notificationMap[id]->setTimeout(timeout); + TQPoint p( 100, 100 ); + notificationMap[id]->move( p ); notificationMap[id]->raise(); notificationMap[id]->show(); + notificationMap[id]->adjustSize(); notificationMap[id]->setActiveWindow(); NotifyAsyncReply(asyncCallId, id); |