Displaying 4 results from an estimated 4 matches for "gtk_menu".
Did you mean:
get_menu
2006 Dec 10
0
Gtk menu fix
...sion.
With this version, detached menu have "Menu window type" and attached menu
have "Normal window type"
Someone using a more recent version of gtk can tell me if bug always present?
Cedric
-------------- next part --------------
A non-text attachment was scrubbed...
Name: gtk_menu.patch
Type: text/x-diff
Size: 389 bytes
Desc: not available
Url : http://lists.freedesktop.org/archives/compiz/attachments/20061210/b2024b29/gtk_menu.bin
2017 Sep 22
3
gtk3 update causing havoc
On my lab systems, the automatic updates were failing because of the
problems with ipod libraries from EPEL being in the way. It turns out
that was a good thing, because when I "fixed" it, a massive set of
packages was updated, including the new gtk3.
These packages are the ones causing problems, I think.
gtk3-3.22.10-4.el7.x86_64
gtk3-devel-3.22.10-4.el7.x86_64
In the release notes,
2009 Jul 23
1
viewer updates for fedora submission
This patchset provides updates to the viewer in preperation
for its fedora submission. Included are patches cmd-line
parameterizing hostname/user/pass/vm, the addition of a
man page, cleanup of the project's structure, and updates
to the spec.
2009 Jul 13
0
[PATCH viewer] permit hostname / username / password / vm to be passed in via the cmd line
...break;
+ }
+ }
+}
+
+static void
+connect_to_vm(struct vm* _vm){
+ struct vm *vm = _vm;
int n = gtk_notebook_get_n_pages (GTK_NOTEBOOK (notebook));
int i, uuidlen, len, fd;
GtkWidget *child;
@@ -1144,5 +1208,5 @@ add_vm_to_connectmenu (gpointer _vm, gpointer data)
gtk_menu_append (GTK_MENU (connectmenu), item);
g_signal_connect (G_OBJECT (item), "activate",
- G_CALLBACK (connect_to_vm), vm);
+ G_CALLBACK (connect_to_vm_via_widget), vm);
}
diff --git a/wui_thread.c b/wui_thread.c
index 8bfa8ca..1688b83 100644
--- a/wui_thread.c
+++ b/wui_thre...