From 39acfc23878c4f723d6d9df1f3a6cad2e1baf007 Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Sat, 19 Jun 2021 10:29:22 -0300 Subject: [PATCH] Fixing toggle table. --- src/core/toggles/table.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/core/toggles/table.c b/src/core/toggles/table.c index d7533bd..af7be17 100644 --- a/src/core/toggles/table.c +++ b/src/core/toggles/table.c @@ -174,16 +174,6 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] = { .description = N_( "If set, asks to place the toplevel window in the fullscreen state" ) }, { - .id = LIB3270_TOGGLE_RECONNECT, - .name = "autoreconnect", - .def = False, - .key = NULL, // Default keycode - .icon = NULL, // Icon name - .label = N_( "Auto-Reconnect" ), - .summary = N_( "Auto-Reconnect" ), - .description = N_( "Automatically reconnect to the host if it ever disconnects" ) - }, - { .id = LIB3270_TOGGLE_INSERT, .name = "insert", .def = False, @@ -315,6 +305,17 @@ const LIB3270_TOGGLE toggle_descriptor[LIB3270_TOGGLE_COUNT+1] = { }, { + .id = LIB3270_TOGGLE_RECONNECT, + .name = "autoreconnect", + .def = False, + .key = NULL, // Default keycode + .icon = NULL, // Icon name + .label = N_( "Auto-Reconnect" ), + .summary = N_( "Auto-Reconnect" ), + .description = N_( "Automatically reconnect to the host if it ever disconnects" ) + }, + + { .id = LIB3270_TOGGLE_COUNT, .name = NULL, .def = False, -- libgit2 0.21.2