Skip to content

Commit c9b4128

Browse files
committed
#1517: fixed "Cart has changed" dialog
1 parent 2fa4d8d commit c9b4128

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/studio/screens/console.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,7 +997,7 @@ static void confirmCommand(Console* console, const char** text, s32 rows, Confir
997997
else
998998
{
999999
CommandConfirmData data = {console, callback};
1000-
showDialog(text, rows, onConfirm, MOVE(data));
1000+
showDialog(text, rows, onConfirm, MOVE(data));
10011001
}
10021002
}
10031003

src/studio/studio.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1622,6 +1622,8 @@ static void reloadConfirm(bool yes, void* data)
16221622
{
16231623
if(yes)
16241624
impl.console->updateProject(impl.console);
1625+
else
1626+
updateMDate();
16251627
}
16261628

16271629
static void checkChanges()

0 commit comments

Comments
 (0)