[gtk/shortcuts-rebased-again: 91/117] doc tools: Create AccelLabel image without using GtkAccelGroup
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/shortcuts-rebased-again: 91/117] doc tools: Create AccelLabel image without using GtkAccelGroup
- Date: Fri, 21 Jun 2019 15:35:10 +0000 (UTC)
commit fb4aa44746aff942510afb3a1ccd26e582a8852d
Author: Benjamin Otte <otte redhat com>
Date: Fri Aug 24 07:38:44 2018 +0200
doc tools: Create AccelLabel image without using GtkAccelGroup
docs/tools/widgets.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
---
diff --git a/docs/tools/widgets.c b/docs/tools/widgets.c
index f044c6c998..a9f65558a7 100644
--- a/docs/tools/widgets.c
+++ b/docs/tools/widgets.c
@@ -281,7 +281,6 @@ create_accel_label (void)
{
WidgetInfo *info;
GtkWidget *widget, *button, *box;
- GtkAccelGroup *accel_group;
widget = gtk_accel_label_new ("Accel Label");
@@ -293,14 +292,10 @@ create_accel_label (void)
gtk_container_add (GTK_CONTAINER (box), widget);
gtk_container_add (GTK_CONTAINER (box), button);
- gtk_accel_label_set_accel_widget (GTK_ACCEL_LABEL (widget), button);
- accel_group = gtk_accel_group_new();
+ gtk_accel_label_set_accel (GTK_ACCEL_LABEL (widget), GDK_KEY_Q, GDK_CONTROL_MASK);
info = new_widget_info ("accel-label", box, SMALL);
- gtk_widget_add_accelerator (button, "activate", accel_group, GDK_KEY_Q, GDK_CONTROL_MASK,
- GTK_ACCEL_VISIBLE | GTK_ACCEL_LOCKED);
-
return info;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]