Merge pull request #31373 from KoBeWi/project_manager_alzheimer
Fix Project Manager not remembering sorting option
This commit is contained in:
commit
ed5c03528d
1 changed files with 1 additions and 1 deletions
|
@ -1312,7 +1312,7 @@ void ProjectList::set_filter_option(ProjectListFilter::FilterOption p_option) {
|
||||||
void ProjectList::set_order_option(ProjectListFilter::FilterOption p_option) {
|
void ProjectList::set_order_option(ProjectListFilter::FilterOption p_option) {
|
||||||
if (_order_option != p_option) {
|
if (_order_option != p_option) {
|
||||||
_order_option = p_option;
|
_order_option = p_option;
|
||||||
EditorSettings::get_singleton()->set("project_manager/sorting_order", (int)_filter_option);
|
EditorSettings::get_singleton()->set("project_manager/sorting_order", (int)_order_option);
|
||||||
EditorSettings::get_singleton()->save();
|
EditorSettings::get_singleton()->save();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue