We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b67066 commit ca29ffaCopy full SHA for ca29ffa
ChangeLog
@@ -1,3 +1,6 @@
1
+2018-08-08 (0.12.13)
2
+ SDL: fix incorrect file loading with ALT+1-9 command
3
+
4
2018-08-08 (0.12.13)
5
COMMON: fix problem with SEQ command
6
src/platform/sdl/editor.cpp
@@ -412,7 +412,8 @@ void System::editSource(String loadPath) {
412
if (getRecentFile(recentFile, event.key - SB_KEY_ALT('1'))) {
413
if (loadSource(recentFile.c_str())) {
414
editWidget->reload(_programSrc);
415
- statusMessage.setFilename(loadPath);
+ statusMessage.setFilename(recentFile);
416
+ statusMessage.update(editWidget, _output, true);
417
setLoadPath(recentFile);
418
setWindowTitle(statusMessage._fileName);
419
loadPath = recentFile;
0 commit comments