Revert accidental newbutton bg color change (#2029)

This commit is contained in:
Mark Thompson 2024-03-23 13:26:46 -05:00 committed by GitHub
parent 81e24d582d
commit 1a87f2d701
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -694,7 +694,7 @@ FileManagerView::FileManagerView(
button_show_hidden_files.on_select = [this]() {
show_hidden_files = !show_hidden_files;
button_show_hidden_files.set_color(show_hidden_files ? Color::dark_green() : Color::dark_grey());
button_show_hidden_files.set_color(show_hidden_files ? Color::green() : Color::dark_grey());
reload_current();
};
}