Codebase list gnome-shell-extensions / dcbc042
Fix app-menu cuts application names Daniel Ruiz de Alegría 2 years ago
1 changed file(s) with 3 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
88 1 file changed, 130 insertions(+), 33 deletions(-)
99
1010 diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js
11 index 2cbb754..ce96b6d 100644
11 index 2cbb754..df0571c 100644
1212 --- a/extensions/apps-menu/extension.js
1313 +++ b/extensions/apps-menu/extension.js
1414 @@ -96,30 +96,36 @@ class ApplicationMenuItem extends PopupMenu.PopupBaseMenuItem {
240240 this._applicationsButtons.clear();
241241 - this.mainBox.style = 'width: 35em;';
242242 - this.mainBox.hide();
243 + this.mainBox.actor.style = 'width: 35em;';
243 + this.applicationsScrollBox.actor.style = 'width: 22em;'
244244 + this.mainBox.actor.hide();
245245
246246 // Load categories
280280 let height = Math.round(categoriesHeight) + MENU_HEIGHT_OFFSET;
281281 - this.mainBox.style += `height: ${height}px`;
282282 + this.mainBox.actor.style += `height: ${height}px`;
283 + this.categoriesBox.box.width = 300;
283 + //this.categoriesBox.box.width = 300;
284284 }
285285
286286 selectCategory(dir) {