tform: fix MouseWatcherRegion area calculation

Fixes #233
This commit is contained in:
rdb 2018-12-19 20:53:11 +01:00
parent daa3100bf1
commit cbda6166a8

View File

@ -17,11 +17,11 @@
INLINE MouseWatcherRegion::
MouseWatcherRegion(const std::string &name, PN_stdfloat left, PN_stdfloat right,
PN_stdfloat bottom, PN_stdfloat top) :
Namable(name),
_frame(left, right, bottom, top)
Namable(name)
{
_sort = 0;
_flags = F_active;
set_frame(left, right, bottom, top);
}
/**