ui: Mark settings dirty on change from dialog

This commit is contained in:
Matt Borgerson 2020-03-26 00:05:21 -07:00
parent 1c8c1babf9
commit bfc3783d9f
1 changed files with 2 additions and 1 deletions

View File

@ -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();