Skip to content

Commit

Permalink
show restart dialoque when changed
Browse files Browse the repository at this point in the history
  • Loading branch information
Consti10 committed Nov 15, 2023
1 parent 69a9de5 commit 2a39c43
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,11 @@ ScrollView {
}
}
onCurrentIndexChanged: {
settings.screen_custom_font_dpi = font_dpi.get(currentIndex).value
const value_fdpi = font_dpi.get(currentIndex).value
if(settings.screen_custom_font_dpi != value_fdpi){
_restartqopenhdmessagebox.show();
}
settings.screen_custom_font_dpi = value_fdpi
}
}
}
Expand Down

0 comments on commit 2a39c43

Please sign in to comment.