mirror of https://github.com/GNOME/gimp.git
added gimp_edit_copy_visible.
2004-12-12 Sven Neumann <sven@gimp.org> * libgimp/gimp.def: added gimp_edit_copy_visible. * plug-ins/script-fu/scripts/copy-visible.scm: decprecated.
This commit is contained in:
parent
75c5adf3bb
commit
0e7423477c
|
@ -1,3 +1,9 @@
|
|||
2004-12-12 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* libgimp/gimp.def: added gimp_edit_copy_visible.
|
||||
|
||||
* plug-ins/script-fu/scripts/copy-visible.scm: decprecated.
|
||||
|
||||
2004-12-12 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plug-ins/common/winclipboard.c: applied patch from Brion Vibber
|
||||
|
|
|
@ -155,6 +155,7 @@ EXPORTS
|
|||
gimp_edit_bucket_fill
|
||||
gimp_edit_clear
|
||||
gimp_edit_copy
|
||||
gimp_edit_copy_visible
|
||||
gimp_edit_cut
|
||||
gimp_edit_fill
|
||||
gimp_edit_paste
|
||||
|
|
|
@ -154,6 +154,7 @@
|
|||
</placeholder>
|
||||
<placeholder name="Copy">
|
||||
<menuitem action="edit-copy" />
|
||||
<menuitem action="edit-copy-visible" />
|
||||
</placeholder>
|
||||
<placeholder name="Paste">
|
||||
<menuitem action="edit-paste" />
|
||||
|
|
|
@ -18,17 +18,6 @@
|
|||
; along with this program; if not, write to the Free Software
|
||||
; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
;
|
||||
; 2004-04-14 This script was almost rewritten from scratch
|
||||
; by Raphaël Quinet <raphael@gimp.org>
|
||||
; see also http://bugzilla.gnome.org/show_bug.cgi?id=139989
|
||||
;
|
||||
; The code is new but the API is the same as in the previous version:
|
||||
; "Copy Visible" version 0.11 01/24/98
|
||||
; by Adrian Likins <adrian@gimp.org>
|
||||
; _heavily_ based on:
|
||||
; cyn-merge.scm version 0.02 10/10/97
|
||||
; Copyright (C) 1997 Sven Neumann (neumanns@uni-duesseldorf.de)
|
||||
;
|
||||
; Removed all code and made it a backward-compat wrapper around
|
||||
; (gimp-edit-copy-visible)
|
||||
; 2004-12-12 Michael Natterer <mitch@gimp.org>
|
||||
|
@ -40,10 +29,10 @@
|
|||
|
||||
(script-fu-register "script-fu-copy-visible"
|
||||
"Copy Visible"
|
||||
"Copy the visible selection"
|
||||
"Sven Neumann <sven@gimp.org>, Adrian Likins <adrian@gimp.org>, Raphael Quinet <raphael@gimp.org>"
|
||||
"Sven Neumann, Adrian Likins, Raphael Quinet"
|
||||
"01/24/1998"
|
||||
"This procedure is deprecated! use \'gimp_edit_copy_visible\' instead."
|
||||
""
|
||||
""
|
||||
""
|
||||
"RGB* INDEXED* GRAY*"
|
||||
SF-IMAGE "Image" 0
|
||||
SF-DRAWABLE "Drawable" 0)
|
||||
|
|
Loading…
Reference in New Issue