Delete unneccessary comment and make other more descriptive
authorLukáš Tyrychtr <lukastyrychtr@gmail.com>
Fri, 17 Sep 2021 13:11:26 +0000 (15:11 +0200)
committerLukáš Tyrychtr <lukastyrychtr@gmail.com>
Fri, 17 Sep 2021 13:11:26 +0000 (15:11 +0200)
gtk/gtkmenubutton.c

index 6552165824e23820d058305f946d70093f95667d..d36b905770885d94051ecbb0a51572a733fb2191 100644 (file)
@@ -1021,7 +1021,8 @@ gtk_menu_button_set_icon_name (GtkMenuButton *menu_button,
   box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
   gtk_widget_set_halign (box, GTK_ALIGN_CENTER);
 
-  // Because we are setting only an icon, let the inner button be labeled by us, so the accessible label can be overridden
+  /* Because we are setting only an icon, let the inner button be labeled by us
+  so the accessible label can be overridden from, for example, an UI file using GtkMenuButton as a child of something. */
   gtk_accessible_update_relation (GTK_ACCESSIBLE (menu_button->button), GTK_ACCESSIBLE_RELATION_LABELLED_BY, menu_button, NULL, -1);
 
   image_widget = g_object_new (GTK_TYPE_IMAGE,
@@ -1156,7 +1157,6 @@ gtk_menu_button_set_label (GtkMenuButton *menu_button,
   gtk_button_set_child (GTK_BUTTON (menu_button->button), box);
   menu_button->label_widget = label_widget;
 
-  // When the user explicitly set a label assume that it should be announced by assistive technologies as well
   gtk_accessible_update_relation (GTK_ACCESSIBLE (menu_button->button), GTK_ACCESSIBLE_RELATION_LABELLED_BY, menu_button->label_widget, NULL, -1);
 
   menu_button->image_widget = NULL;