Skip to content

Commit

Permalink
desktop-ui: rename "Reload" to "Apply" in driver settings to clarify …
Browse files Browse the repository at this point in the history
…it's function
  • Loading branch information
LukeUsher committed Nov 28, 2023
1 parent d381bb4 commit f9d38f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions desktop-ui/settings/drivers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ auto DriverSettings::construct() -> void {

videoLabel.setText("Video").setFont(Font().setBold());
videoDriverLabel.setText("Driver:");
videoDriverAssign.setText("Reload").onActivate([&] {
videoDriverAssign.setText("Apply").onActivate([&] {
settings.video.driver = videoDriverList.selected().text();
videoDriverUpdate();
});
Expand Down Expand Up @@ -35,7 +35,7 @@ auto DriverSettings::construct() -> void {

audioLabel.setText("Audio").setFont(Font().setBold());
audioDriverLabel.setText("Driver:");
audioDriverAssign.setText("Reload").onActivate([&] {
audioDriverAssign.setText("Apply").onActivate([&] {
settings.audio.driver = audioDriverList.selected().text();
audioDriverUpdate();
});
Expand Down Expand Up @@ -72,7 +72,7 @@ auto DriverSettings::construct() -> void {

inputLabel.setText("Input").setFont(Font().setBold());
inputDriverLabel.setText("Driver:");
inputDriverAssign.setText("Reload").onActivate([&] {
inputDriverAssign.setText("Apply").onActivate([&] {
settings.input.driver = inputDriverList.selected().text();
inputDriverUpdate();
});
Expand Down

0 comments on commit f9d38f5

Please sign in to comment.