|
Karsten Hopp |
73d17a |
To: vim-dev@vim.org
|
|
Karsten Hopp |
73d17a |
Subject: Patch 7.0.151
|
|
Karsten Hopp |
73d17a |
Fcc: outbox
|
|
Karsten Hopp |
73d17a |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
73d17a |
Mime-Version: 1.0
|
|
Karsten Hopp |
73d17a |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
73d17a |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
73d17a |
------------
|
|
Karsten Hopp |
73d17a |
|
|
Karsten Hopp |
73d17a |
Patch 7.0.151
|
|
Karsten Hopp |
73d17a |
Problem: Buttons in file dialog are not according to Gnome guidelines.
|
|
Karsten Hopp |
73d17a |
Solution: Swap Cancel and Open buttons. (Stefano Zacchiroli)
|
|
Karsten Hopp |
73d17a |
Files: src/gui_gtk.c
|
|
Karsten Hopp |
73d17a |
|
|
Karsten Hopp |
73d17a |
|
|
Karsten Hopp |
73d17a |
*** ../vim-7.0.150/src/gui_gtk.c Tue Oct 10 18:29:21 2006
|
|
Karsten Hopp |
73d17a |
--- src/gui_gtk.c Sun Oct 22 15:33:40 2006
|
|
Karsten Hopp |
73d17a |
***************
|
|
Karsten Hopp |
73d17a |
*** 1293,1300 ****
|
|
Karsten Hopp |
73d17a |
GTK_WINDOW(gui.mainwin),
|
|
Karsten Hopp |
73d17a |
saving ? GTK_FILE_CHOOSER_ACTION_SAVE
|
|
Karsten Hopp |
73d17a |
: GTK_FILE_CHOOSER_ACTION_OPEN,
|
|
Karsten Hopp |
73d17a |
- saving ? GTK_STOCK_SAVE : GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
|
|
Karsten Hopp |
73d17a |
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
Karsten Hopp |
73d17a |
NULL);
|
|
Karsten Hopp |
73d17a |
gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc),
|
|
Karsten Hopp |
73d17a |
(const gchar *)dirbuf);
|
|
Karsten Hopp |
73d17a |
--- 1293,1300 ----
|
|
Karsten Hopp |
73d17a |
GTK_WINDOW(gui.mainwin),
|
|
Karsten Hopp |
73d17a |
saving ? GTK_FILE_CHOOSER_ACTION_SAVE
|
|
Karsten Hopp |
73d17a |
: GTK_FILE_CHOOSER_ACTION_OPEN,
|
|
Karsten Hopp |
73d17a |
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
Karsten Hopp |
73d17a |
+ saving ? GTK_STOCK_SAVE : GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
|
|
Karsten Hopp |
73d17a |
NULL);
|
|
Karsten Hopp |
73d17a |
gtk_file_chooser_set_current_folder(GTK_FILE_CHOOSER(fc),
|
|
Karsten Hopp |
73d17a |
(const gchar *)dirbuf);
|
|
Karsten Hopp |
73d17a |
*** ../vim-7.0.150/src/version.c Tue Oct 24 21:38:16 2006
|
|
Karsten Hopp |
73d17a |
--- src/version.c Tue Oct 24 22:01:07 2006
|
|
Karsten Hopp |
73d17a |
***************
|
|
Karsten Hopp |
73d17a |
*** 668,669 ****
|
|
Karsten Hopp |
73d17a |
--- 668,671 ----
|
|
Karsten Hopp |
73d17a |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
73d17a |
+ /**/
|
|
Karsten Hopp |
73d17a |
+ 151,
|
|
Karsten Hopp |
73d17a |
/**/
|
|
Karsten Hopp |
73d17a |
|
|
Karsten Hopp |
73d17a |
--
|
|
Karsten Hopp |
73d17a |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
73d17a |
108. While reading a magazine, you look for the Zoom icon for a better
|
|
Karsten Hopp |
73d17a |
look at a photograph.
|
|
Karsten Hopp |
73d17a |
|
|
Karsten Hopp |
73d17a |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
73d17a |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
73d17a |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
73d17a |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|