summaryrefslogtreecommitdiff
path: root/core
Side-by-side diff
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/cardmon/cardmon.cpp7
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
@@ -277,4 +277,6 @@ bool CardMonitor::getStatusPcmcia(int showPopUp)
}
+ repaint( FALSE );
return ((cardWas0 == cardInPcmcia0
&& cardWas1 == cardInPcmcia1) ? FALSE : TRUE);
+
}
@@ -325,2 +327,3 @@ bool CardMonitor::getStatusSd(int showPopUp)
#endif
+ repaint( FALSE );
return ((cardWas == cardInSd) ? FALSE : TRUE);
@@ -333,3 +336,3 @@ void CardMonitor::paintEvent(QPaintEvent *)
- if (cardInPcmcia0 || cardInPcmcia1 || cardInSd) {
+ if ( cardInPcmcia0 || cardInPcmcia1 || cardInSd ) {
p.drawPixmap(0, 0, pm);
@@ -337,3 +340,3 @@ void CardMonitor::paintEvent(QPaintEvent *)
} else {
- p.eraseRect(rect());
+ //p.eraseRect(rect());
hide();