Movie list menu: place "Import movies" before "Delete movies"
authorPhilipp Zabel <philipp.zabel@gmail.com>
Wed, 4 Aug 2010 22:26:50 +0000 (00:26 +0200)
committerPhilipp Zabel <philipp.zabel@gmail.com>
Thu, 5 Aug 2010 19:05:00 +0000 (21:05 +0200)
According to the Hildon 2.2 UI Style Guide, Chapter 9.3.4, creating
actions should come first, then editing actions, and deleting actions
last.

src/movie-list-menu.vala

index dc7fa18..ac9e9f6 100644 (file)
@@ -94,8 +94,8 @@ public class MovieListMenu : AppMenu {
                append (filter_rating);
                append (filter_genres);
                append (poster_view);
-               append (delete_movies);
                append (import_movies);
+               append (delete_movies);
                append (settings);
 
                show_all ();