mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-25 14:22:54 -06:00
ide: Debugger NLS support for debugee commandline
This commit is contained in:
parent
161878682f
commit
05fdb8a04a
13 changed files with 62 additions and 35 deletions
|
|
@ -747,6 +747,7 @@ Ctrl *ArrayCtrl::SyncLineCtrls(int i, Ctrl *p)
|
|||
if(!hasctrls)
|
||||
return NULL;
|
||||
Size sz = GetSize();
|
||||
bool visible = IsLineVisible(i);
|
||||
for(int j = 0; j < column.GetCount(); j++) {
|
||||
bool ct = IsCtrl(i, j);
|
||||
if(!ct && column[j].factory) {
|
||||
|
|
@ -781,7 +782,7 @@ Ctrl *ArrayCtrl::SyncLineCtrls(int i, Ctrl *p)
|
|||
}
|
||||
p = &c;
|
||||
Rect r;
|
||||
if(i < min_visible_line || i > max_visible_line)
|
||||
if(i < min_visible_line || i > max_visible_line || !visible)
|
||||
r.bottom = r.top = -1;
|
||||
else
|
||||
r = GetCellRectM(i, j);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue