rozniak / xfce-winxp-tc

Windows XP stuff for XFCE
Other
929 stars 30 forks source link

Some entries in the start menu are missing arrows #309

Open synthslvt opened 1 month ago

synthslvt commented 1 month ago

In the start menu both the "My Recent Documents" and the "Connect To" entries are missing a small arrow meant to signify that they have context menus. Its a small thing but adds to the completeness.

Screenshot_2024-05-29_18-16-27

rozniak commented 1 month ago

Mmmmm what confuses me is that My Recent Documents actually does have functionality now with its submenu, so it's weird to me that GTK isn't automatically giving it an arrow.

I haven't tested but it might be fixable by simply creating a GtkArrow object in those menu items in personal-menu.ui (https://github.com/rozniak/xfce-winxp-tc/blob/master/shell/taskband/src/res/personal-menu.ui).

Something like

<child>
  <object class="GtkArrow">
    <property name="visible">True</property>
    <property name="can-focus">False</property>
    <property name="arrow-type">GTK_ARROW_RIGHT</property>
  </object>
</child>

Inside the menu items for Connect To... and My Recent Documents.