Skip to content
Snippets Groups Projects
Commit 8a698de3 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#2383] Fix security table in account config

parent f8450544
Branches
Tags
No related merge requests found
......@@ -691,9 +691,9 @@ GtkWidget * create_security_tab(account_t **a)
g_signal_connect (G_OBJECT (GTK_COMBO_BOX(keyExchangeCombo)), "changed", G_CALLBACK (key_exchange_changed_cb), currentAccount);
gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 5, 6);
gtk_table_attach_defaults(GTK_TABLE(table), keyExchangeCombo, 1, 2, 5, 6);
gtk_table_attach_defaults(GTK_TABLE(table), advancedZrtpButton, 2, 3, 5, 6);
gtk_table_attach_defaults(GTK_TABLE(table), label, 0, 1, 1, 2);
gtk_table_attach_defaults(GTK_TABLE(table), keyExchangeCombo, 1, 2, 1, 2);
gtk_table_attach_defaults(GTK_TABLE(table), advancedZrtpButton, 2, 3, 1, 2);
gtk_widget_show_all(table);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment