summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/comm/keypebble/krfbbuffer.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/comm/keypebble/krfbbuffer.cpp b/noncore/comm/keypebble/krfbbuffer.cpp
index 92918d4..4cec0c2 100644
--- a/noncore/comm/keypebble/krfbbuffer.cpp
+++ b/noncore/comm/keypebble/krfbbuffer.cpp
@@ -186,12 +186,14 @@ void KRFBBuffer::drawRawRectChunk( void *data,
186 else { 186 else {
187 p.setBrush( QBrush( Qt::black ) ); 187 p.setBrush( QBrush( Qt::black ) );
188 p.drawRect( x, y, w, h ); 188 p.drawRect( x, y, w, h );
189 } 189 }
190 190
191 if (scaleFactor > 1) { 191 if (scaleFactor > 1) {
192 /* FIXME: proper zero width/height handling */
193 if (w/scaleFactor != 0)
192 p.drawImage( x/scaleFactor, y/scaleFactor, img.smoothScale(w/scaleFactor,h/scaleFactor) ); 194 p.drawImage( x/scaleFactor, y/scaleFactor, img.smoothScale(w/scaleFactor,h/scaleFactor) );
193 emit updated( x/scaleFactor, y/scaleFactor, w/scaleFactor, h/scaleFactor ); 195 emit updated( x/scaleFactor, y/scaleFactor, w/scaleFactor, h/scaleFactor );
194 } 196 }
195 else { 197 else {
196 p.drawImage( x, y, img); 198 p.drawImage( x, y, img);
197 emit updated( x, y, w, h ); 199 emit updated( x, y, w, h );