mirror of
https://github.com/brl/mutter.git
synced 2025-06-14 01:09:30 +00:00
* clutter/clutter-model.c: (clutter_model_set_sorting_column):
Don't disable sorting on column 0
This commit is contained in:
@ -1223,7 +1223,7 @@ clutter_model_set_sorting_column (ClutterModel *model,
|
||||
|
||||
priv->sort_column = column;
|
||||
|
||||
if (priv->sort_column > 0)
|
||||
if (priv->sort_column >= 0)
|
||||
clutter_model_resort (model);
|
||||
|
||||
g_signal_emit (model, model_signals[SORT_CHANGED], 0);
|
||||
|
Reference in New Issue
Block a user