Hi,<br><br>(still no working feisty yelp, so again I will explain what needs to be updated:)<br><br>I find it a bit confusing the arrows are pointing to each other. I think it is more normal if the arrows are standing up and down.
<br><br>
file: ./src/yelp-window.c<br>
find: <br>
(1404:) arrow = gtk_arrow_new (GTK_ARROW_RIGHT, GTK_SHADOW_NONE);<br>
replace<br>
arrow = gtk_arrow_new (GTK_ARROW_DOWN, GTK_SHADOW_NONE);<br><br>file: ./src/yelp-window.c<br>find: <br>(1416:) arrow = gtk_arrow_new (GTK_ARROW_LEFT, GTK_SHADOW_NONE);<br>replace<br> arrow = gtk_arrow_new (GTK_ARROW_UP, GTK_SHADOW_NONE);
<br><br>Also I want to change 'Find Next' and 'Find Previous' to 'Next' and 'Previous', because it is clear what they are standing for. I don't think it is needed it get repeated again. But ran into some problems. When I just remove the words the icon to close the search bar is getting bigger. So it isn't standing in the right corner anymore, but some 10px away from it.
<br>(To look yourself look in ./src/yelp-window.c and change (1405 and1415) 'label = gtk_label_new_with_mnemonic (_("Find _Next"));' to 'label = gtk_label_new_with_mnemonic (_("_Next"));' and 'label = gtk_label_new_with_mnemonic (_("Find _Previous"));' to 'label = gtk_label_new_with_mnemonic (_("_Previous"));'. So for the moment only the arrows fix)
<br><br>greetz<br>