Commit 8606c61675631bd8e6536c8994fc8fc45e428706

Authored by Josh Klontz
1 parent 3fc2a0a7

remove this unintended rounding

Showing 1 changed file with 1 additions and 1 deletions
openbr/openbr_plugin.cpp
@@ -249,7 +249,7 @@ QList<QRectF> File::rects() const @@ -249,7 +249,7 @@ QList<QRectF> File::rects() const
249 { 249 {
250 QList<QRectF> rects; 250 QList<QRectF> rects;
251 foreach (const QVariant &rect, m_metadata["Rects"].toList()) 251 foreach (const QVariant &rect, m_metadata["Rects"].toList())
252 - rects.append(rect.toRect()); 252 + rects.append(rect.toRectF());
253 return rects; 253 return rects;
254 } 254 }
255 255