mirror of https://github.com/xemu-project/xemu.git
ui: Mark settings dirty on change from dialog
This commit is contained in:
parent
1c8c1babf9
commit
bfc3783d9f
|
@ -980,8 +980,9 @@ struct SettingsWindow
|
|||
ImGui::SameLine();
|
||||
if (ImGui::Button("Browse...", ImVec2(100, 0))) {
|
||||
const char *selected = noc_file_dialog_open(NOC_FILE_DIALOG_OPEN, filters, buf, NULL);
|
||||
if (selected != NULL) {
|
||||
if ((selected != NULL) && (strcmp(buf, selected) != 0)) {
|
||||
strncpy(buf, selected, len-1);
|
||||
dirty = true;
|
||||
}
|
||||
}
|
||||
ImGui::PopID();
|
||||
|
|
Loading…
Reference in New Issue