-rw-r--r-- | core/applets/cardmon/cardmon.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/applets/cardmon/cardmon.cpp b/core/applets/cardmon/cardmon.cpp index 25bb137..f3f9044 100644 --- a/core/applets/cardmon/cardmon.cpp +++ b/core/applets/cardmon/cardmon.cpp @@ -266,26 +266,28 @@ bool CardMonitor::getStatusPcmcia(int showPopUp) } text += cardInPcmcia1Name; popUp(text, "cardmon/" + cardInPcmcia1Type); } QSound::play(Resource::findSound("cardmon/card" + what)); } } else { // no file found qDebug("no file found"); cardInPcmcia0 = FALSE; cardInPcmcia1 = FALSE; } + repaint( FALSE ); return ((cardWas0 == cardInPcmcia0 && cardWas1 == cardInPcmcia1) ? FALSE : TRUE); + } bool CardMonitor::getStatusSd(int showPopUp) { bool cardWas = cardInSd; // remember last state cardInSd = FALSE; #if defined(_OS_LINUX_) || defined(Q_OS_LINUX) struct mntent *me; FILE *mntfp = setmntent("/etc/mtab", "r"); @@ -314,28 +316,29 @@ bool CardMonitor::getStatusSd(int showPopUp) what = "on"; } else { text += "Ejected: SD/MMC"; what = "off"; } //qDebug("TEXT: " + text ); QSound::play(Resource::findSound("cardmon/card" + what)); popUp(text, "cardmon/ide"); // XX add SD pic } #else #error "Not on Linux" #endif + repaint( FALSE ); return ((cardWas == cardInSd) ? FALSE : TRUE); } void CardMonitor::paintEvent(QPaintEvent *) { QPainter p(this); - if (cardInPcmcia0 || cardInPcmcia1 || cardInSd) { + if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) { p.drawPixmap(0, 0, pm); show(); } else { - p.eraseRect(rect()); + //p.eraseRect(rect()); hide(); } } |