appDisplay: don't increment counter if we didn't add a category
Or we'll later try to jump to the wrong category when clicking on it.
This commit is contained in:
parent
2492dc50db
commit
e58fbeea17
@ -223,7 +223,7 @@ const ViewByCategories = new Lang.Class({
|
|||||||
this._loadCategory(dir, apps);
|
this._loadCategory(dir, apps);
|
||||||
|
|
||||||
if (apps.length == 0)
|
if (apps.length == 0)
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
let button = new St.Button({ label: GLib.markup_escape_text (name, -1),
|
let button = new St.Button({ label: GLib.markup_escape_text (name, -1),
|
||||||
@ -244,6 +244,7 @@ const ViewByCategories = new Lang.Class({
|
|||||||
}
|
}
|
||||||
|
|
||||||
this._categoryBox.add(button, { expand: true, x_fill: true, y_fill: false });
|
this._categoryBox.add(button, { expand: true, x_fill: true, y_fill: false });
|
||||||
|
return true;
|
||||||
},
|
},
|
||||||
|
|
||||||
_removeAll: function() {
|
_removeAll: function() {
|
||||||
@ -269,7 +270,8 @@ const ViewByCategories = new Lang.Class({
|
|||||||
var dir = iter.get_directory();
|
var dir = iter.get_directory();
|
||||||
if (dir.get_is_nodisplay())
|
if (dir.get_is_nodisplay())
|
||||||
continue;
|
continue;
|
||||||
this._addCategory(dir.get_name(), i, dir);
|
|
||||||
|
if (this._addCategory(dir.get_name(), i, dir))
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user