summaryrefslogtreecommitdiff
path: root/src/newgrf_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf_gui.cpp')
-rw-r--r--src/newgrf_gui.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/newgrf_gui.cpp b/src/newgrf_gui.cpp
index 8b7e58ded..f7bed462d 100644
--- a/src/newgrf_gui.cpp
+++ b/src/newgrf_gui.cpp
@@ -216,7 +216,12 @@ private:
void SortGrfList()
{
if (!this->grfs.Sort()) return;
+ this->UpdateListPosition();
+ }
+ /** Update selection position. */
+ void UpdateListPosition()
+ {
/* update list position */
if (this->sel != NULL) {
this->sel_pos = this->grfs.FindIndex(this->sel);
@@ -239,6 +244,7 @@ private:
void FilterGrfList()
{
if (!this->grfs.Filter(this->edit_str_buf)) return;
+ this->UpdateListPosition();
}
/** Make sure that the currently selected grf is within the visible part of the list */