Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2742,8 +2742,11 @@ class CinnamonMenuApplet extends Applet.TextIconApplet {
this.categoriesBox = new St.BoxLayout({ style_class: 'menu-categories-box',
vertical: true,
accessible_role: Atk.Role.LIST });
// Add additional box with 0 padding as a workaround to bug github.com/linuxmint/cinnamon/issues/11760
this.categoriesBugfixBox = new St.BoxLayout({ style: 'padding: 0px; margin: 0px; spacing: 0px;' });
this.categoriesBugfixBox.add_actor(this.categoriesBox);
this.categoriesScrollBox = new St.ScrollView({ style_class: 'vfade menu-applications-scrollbox' });
this.categoriesScrollBox.add_actor(this.categoriesBox);
this.categoriesScrollBox.add_actor(this.categoriesBugfixBox);
this.categoriesScrollBox.set_policy(St.PolicyType.NEVER, St.PolicyType.AUTOMATIC);
this.categoriesScrollBox.set_clip_to_allocation(true);

Expand Down
Loading