Bug #2048
Misplaced cursor in assist (after ")")
Status: | Approved | Start date: | 07/06/2020 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | Miroslav Fidler | % Done: | 0% | |
Category: | IDE | Spent time: | - | |
Target version: | - |
Description
struct MyApp : TopWindow {
VPoly poly;
void Paint(Draw& w) {
Size sz = GetSize();
if(sz.cx && poly.GetCount() == 0) {
poly.poly.Add(Pointf(200, 200));
poly.poly.Add(Pointf(200, 800));
poly.poly.Add(Pointf(800, 800));
poly.poly.Add(Pointf(800, 200));
}
Vector<Point> pd;
for(Pointf p : poly)
pd.Add(p);
w.DrawPolygon(
}
};
History
#1 Updated by Miroslav Fidler almost 5 years ago
Also, TopWindow/ Ctrl::SetRect issue seems to be back.
#2 Updated by Miroslav Fidler almost 5 years ago
- Status changed from New to Approved