Peter M. Groen
/
openbr
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
8606c61675631bd8e6536c8994fc8fc45e428706
Authored by
Josh Klontz
2018-08-15 13:14:21 -0600
1 parent
3fc2a0a7
remove this unintended rounding
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
openbr/openbr_plugin.cpp
openbr/openbr_plugin.cpp
View file @
8606c61
...
...
@@ -249,7 +249,7 @@ QList<QRectF> File::rects() const
249
249
{
250
250
QList<QRectF> rects;
251
251
foreach (const QVariant &rect, m_metadata["Rects"].toList())
252
- rects.append(rect.toRect
());
252
+ rects.append(rect.toRect
F
());
253
253
return rects;
254
254
}
255
255
...
...