diff options
Diffstat (limited to 'x11-fm/gnome-commander2/files/patch-src::gnome-cmd-dir-indicator.c')
-rw-r--r-- | x11-fm/gnome-commander2/files/patch-src::gnome-cmd-dir-indicator.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/x11-fm/gnome-commander2/files/patch-src::gnome-cmd-dir-indicator.c b/x11-fm/gnome-commander2/files/patch-src::gnome-cmd-dir-indicator.c new file mode 100644 index 0000000..2f1a4fe --- /dev/null +++ b/x11-fm/gnome-commander2/files/patch-src::gnome-cmd-dir-indicator.c @@ -0,0 +1,16 @@ +--- src/gnome-cmd-dir-indicator.c.orig Tue Jun 22 19:55:28 2004 ++++ src/gnome-cmd-dir-indicator.c Tue Jun 22 19:56:15 2004 +@@ -91,11 +91,11 @@ + if (event->type == GDK_BUTTON_PRESS && event->button == 1) { + /* left click - work out the path */ + gchar *chTo; ++ gint i; + const gchar *labelText = gtk_label_get_text (GTK_LABEL (indicator->priv->label)); ++ gint x = (gint)event->x; + chTo = malloc (strlen (labelText) + 1); + strcpy (chTo, labelText); +- gint x = (gint)event->x; +- gint i; + + for (i = 0; i < indicator->priv->numPositions; i++) { + if (x < indicator->priv->slashPixelPosition[i]) { |