First showing the dialog and then updating it's position solves the problem of the calendars not appearing anymore unless an inconvenient set of circumstances occur.
svn path=/trunk/KDE/kdelibs/; revision=890887
This commit is contained in:
parent
e1bb614999
commit
103f1db668
@ -356,8 +356,8 @@ bool PopupApplet::eventFilter(QObject *watched, QEvent *event)
|
||||
void PopupApplet::showPopup(uint popupDuration)
|
||||
{
|
||||
if (d->dialog && (formFactor() == Horizontal || formFactor() == Vertical)) {
|
||||
d->updateDialogPosition();
|
||||
d->dialog->show();
|
||||
d->updateDialogPosition();
|
||||
KWindowSystem::setState(d->dialog->winId(), NET::SkipTaskbar | NET::SkipPager);
|
||||
|
||||
if (d->timer) {
|
||||
@ -452,8 +452,8 @@ void PopupAppletPrivate::togglePopup()
|
||||
if (dialog->isVisible()) {
|
||||
dialog->hide();
|
||||
} else {
|
||||
updateDialogPosition();
|
||||
dialog->show();
|
||||
updateDialogPosition();
|
||||
KWindowSystem::setState(dialog->winId(), NET::SkipTaskbar | NET::SkipPager);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user