1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 00:50:25 +02:00

Fixed some IDE issues

Fixed some issues related to creating new projects and workspace
Added 'Refresh' option to project
Fixed auto-include refresh
Fixed folder rename
Fixed EOF issue involving DbgModule string table
This commit is contained in:
Brian Fiete 2019-09-05 08:18:24 -07:00
parent 8a02874b51
commit 0ce6e44523
14 changed files with 374 additions and 163 deletions

View file

@ -127,7 +127,7 @@ namespace IDE.ui
if (nextSlash != -1)
selStr.Append(editText, startSlash + 1, nextSlash - startSlash - 1);
else
selStr.Append(editText, startSlash + 1, cursorPos - startSlash - 1);
selStr.Append(editText, startSlash + 1, Math.Max(cursorPos - startSlash - 1, 0));
String info = scope .();
info.Append("uncertain\n");