[four-in-a-row] Remove a mistake.



commit fbd421da1a5f80c1dd402a84fc6aec1852f74dba
Author: Arnaud Bonatti <arnaud bonatti gmail com>
Date:   Sun May 3 21:27:23 2020 +0200

    Remove a mistake.

 src/four-in-a-row.vala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/four-in-a-row.vala b/src/four-in-a-row.vala
index 1cb63dc..20a1ea9 100644
--- a/src/four-in-a-row.vala
+++ b/src/four-in-a-row.vala
@@ -123,7 +123,7 @@ private class FourInARow : Gtk.Application
     private const GLib.ActionEntry app_entries [] =  // see also add_actions()
     {
         { "game-type",          null,       "s", "'dark'", change_game_type },
-        { "toggle-game-menu",   toggle_game_menu        },
+     // { "toggle-game-menu",   toggle_game_menu        },
         { "next-round",         on_next_round           },
         { "give-up",            on_give_up              },
         { "scores",             on_game_scores          },
@@ -1300,7 +1300,7 @@ private class FourInARow : Gtk.Application
         game_reset (/* reload settings */ false);
     }
 
-    private inline void toggle_game_menu (/* SimpleAction action, Variant? variant */)
+    private inline void toggle_game_menu ()
     {
         window.close_hamburger ();
         if (window.is_extra_thin)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]