mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
ide: Main config GUI improved
This commit is contained in:
parent
597ed21aed
commit
87709894e9
4 changed files with 296 additions and 233 deletions
|
|
@ -2375,7 +2375,7 @@ void ArrayCtrl::DoDuplicate() {
|
|||
int c = cursor;
|
||||
if(!KillCursor()) return;
|
||||
Vector<Value> va = ReadRow(c);
|
||||
c = IsAppending() ? array.GetCount() : c + 1;
|
||||
c = IsAppending() && !IsInserting() ? array.GetCount() : c + 1;
|
||||
Insert(c, va);
|
||||
SetCursor(c);
|
||||
DoEdit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue