FreeBSD Bugzilla – Attachment 110375 Details for
Bug 151523
[PATCH]: x11/yelp Fix find bar's navigation buttons
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
x11-yelp.patch
x11-yelp.patch (text/plain), 1.98 KB, created by
Maxim Samsonov
on 2010-10-18 00:40:03 UTC
(
hide
)
Description:
x11-yelp.patch
Filename:
MIME Type:
Creator:
Maxim Samsonov
Created:
2010-10-18 00:40:03 UTC
Size:
1.98 KB
patch
obsolete
>diff --git a/x11/yelp/files/patch-src-yelp-window.c b/x11/yelp/files/patch-src-yelp-window.c >new file mode 100644 >--- /dev/null >+++ b/x11/yelp/files/patch-src-yelp-window.c >@@ -0,0 +1,37 @@ >+--- src/yelp-window.c.orig 2010-10-16 23:06:05.000000000 +0400 >++++ src/yelp-window.c 2010-10-17 03:58:57.000000000 +0400 >+@@ -1555,28 +1555,26 @@ >+ >+ gtk_label_set_mnemonic_widget (GTK_LABEL (label), priv->find_entry); >+ >+- box = gtk_hbox_new (FALSE, 0); >+ arrow = gtk_arrow_new (GTK_ARROW_LEFT, GTK_SHADOW_NONE); >+ label = gtk_label_new_with_mnemonic (_("Find _Previous")); >+- gtk_box_pack_start (GTK_BOX (box), arrow, FALSE, FALSE, 0); >+- gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0); >+- priv->find_prev = gtk_tool_button_new (box, NULL); >++ priv->find_prev = gtk_tool_button_new (arrow, NULL); >++ gtk_tool_button_set_label_widget (GTK_TOOL_BUTTON (priv->find_prev), label); >+ g_signal_connect (priv->find_prev, >+ "clicked", >+ G_CALLBACK (window_find_clicked_cb), >+ window); >++ gtk_tool_item_set_is_important (priv->find_prev, TRUE); >+ gtk_toolbar_insert (GTK_TOOLBAR (find_bar), priv->find_prev, -1); >+ >+- box = gtk_hbox_new (FALSE, 0); >+ arrow = gtk_arrow_new (GTK_ARROW_RIGHT, GTK_SHADOW_NONE); >+ label = gtk_label_new_with_mnemonic (_("Find _Next")); >+- gtk_box_pack_start (GTK_BOX (box), arrow, FALSE, FALSE, 0); >+- gtk_box_pack_start (GTK_BOX (box), label, TRUE, TRUE, 0); >+- priv->find_next = gtk_tool_button_new (box, NULL); >++ priv->find_next = gtk_tool_button_new (arrow, NULL); >++ gtk_tool_button_set_label_widget (GTK_TOOL_BUTTON (priv->find_next), label); >+ g_signal_connect (priv->find_next, >+ "clicked", >+ G_CALLBACK (window_find_clicked_cb), >+ window); >++ gtk_tool_item_set_is_important (priv->find_next, TRUE); >+ gtk_toolbar_insert (GTK_TOOLBAR (find_bar), priv->find_next, -1); >+ >+ priv->find_sep = gtk_separator_tool_item_new ();
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 151523
: 110375