- 22 Apr, 2000 3 commits
-
-
Valek Frob authored
-
BST 2000 authored
Sat Apr 22 14:01:06 BST 2000 <alt@gimp.org> * app/bezier_select.c Fixed problem pointed out by Garry R. Osgood (manipulating control points where curve is closed). Thanks again Garry for pointing it out.
-
SHIRASAKI Yasuhiro authored
-- yasuhiro
-
- 21 Apr, 2000 10 commits
-
-
Sven Neumann authored
fixed compiler warnings, changed some gints to gbooleans cleaned up namespace and documentation updated libgimp documentation --Sven
-
Manish Singh authored
* libgimp/Makefile.am: gimpsignal.[ch] needs to go into libgimp, since it is used in gimp.c * libgimp/gimpsignal.c: use g_error instead of gimp_fatal_error * plug-ins/common/png.c: typo fix for Nick's previous commit -Yosh
-
Pablo Saratxaga authored
-
Nick Lamb /GIMP authored
No more warnings either.
-
Sven Neumann authored
fixed compiler warnings, changed some gints to gbooleans cleaned up namespace and documentation updated libgimp documentation --Sven
-
Garry R. Osgood authored
2000-04-21 Garry R. Osgood <gosgood@idt.net> * app/main.c * libgimp/Makefile.am * libgimp/gimp.c * libgimp/gimpsignal.c (New ) * libgimp/gimpsignal.h (New ) Patch by Austin Donnelly <austin@gimp.org> to address #2742. (I took the liberty of moving it to libgimp for general consumption, & fixed a typo) Thanks due to Tim Mooney <mooney@dogbert.cc.ndsu.nodak.edu> for testing this on various flavors of OSF/1 boxes where #2742 seemed especially common.
-
Sven Neumann authored
fixed compiler warnings, changed some gints to gbooleans cleaned up namespace and documentation updated libgimp documentation --Sven
-
Valek Frob authored
-
Valek Frob authored
-
Nick Lamb /GIMP authored
-
- 20 Apr, 2000 8 commits
-
-
Sven Neumann authored
Should fix bug #7329. --Sven
-
Sven Neumann authored
* plug-ins/common/bumpmap.c: correctly initialize the bumpmap offsets * plug-ins/common/png.c: (load_image) if the PNG cannot be loaded, return -1 instead of some uninitialized integer --Sven
-
Michael Natterer authored
2000-04-20 Michael Natterer <mitch@gimp.org> * gimprc.in * app/gimprc.c: default to restore_session == TRUE so first time users really see the automatically opened dialogs. * app/session.[ch]: also open "Tool Options" if no sessionrc exists. Moved the harcoded initial positions away from the top and left edges of the screen to avoid dialogs which appear underneath panels. Also arranged the four default dialogs non-overlapping.
-
Michael Natterer authored
2000-04-20 Michael Natterer <mitch@gimp.org> * app/fuzzy_select.c * app/selection_options.h * app/tool_options.c: moved the "Threshold" scale from the fuzzy select options to the selection options structure, so none of the selection tools needs it's own tools options structure. * app/bucket_fill.c: moved "Threshold" after "Sample Merged" as in the fuzzy select options.
-
Michael Natterer authored
2000-04-20 Michael Natterer <mitch@gimp.org> * libgimp/gimpfileselection.[ch]: using the GimpPixmap here was a bad idea because showing/hiding the pixmap widgets is no solution (somebody may call gtk_widget_show_all() and we suddenly see both pixmaps, eek). Reverted it to use GtkPixmap and gtk_pixmap_set().
-
jtl authored
-
Sven Neumann authored
--Sven
-
Nick Lamb /GIMP authored
-
- 19 Apr, 2000 4 commits
-
-
Michael Natterer authored
2000-04-19 Michael Natterer <mitch@gimp.org> * app/bucket_fill.c * app/by_color_select.c * app/fuzzy_select.c * app/preferences_dialog.c: made the "default_threshold" gimprc variable work as advertized: - initialize the thresholds with it. - use it for "Reset". - added a widget to the "Tool Options" preferences page. - noticed that the "Reset" button of "By Color Select" doesn't behave like all the other "Reset" buttons and changed it to reset the ui, not the selection. (There is now a "None" button and because it was so trivial, I couldn't resist to add "All" and "Invert" buttons, too) * libgimp/Makefile.am * libgimp/gimpui.c: new file. * libgimp/gimpui.h: new function gimp_ui_init() which will be called by all plugins which have a ui (not only by those with a preview because plugins should always follow gimp's colormap installation policy). Could someone please check if the FIXME stuff in the function is the right thing to do (TM). Does GdkRGB allocate the correct colors for the widgets in all cases or do we have to find another way to ensure this across processes (gtk instances)?
-
Sven Neumann authored
--Sven
-
Pablo Saratxaga authored
-
Michael Natterer authored
2000-04-19 Michael Natterer <mitch@gimp.org> * plug-ins/gdnytext/*: fixed all files to include the i18n stuff correctly and don't mess up Gimp's locale setup. Fixes #7878.
-
- 18 Apr, 2000 5 commits
-
-
Pablo Saratxaga authored
-
Michael Natterer authored
2000-04-18 Michael Natterer <mitch@gimp.org> * app/user_install.c: Creating the user's gimp directory may take some time on NFS, so users may be tempted to press the "Continue" button again. Inform the user that this step may take some time and set the "Continue" and "Cancel" buttons insensitive until finished.
-
Yuri Syrota authored
-
Valek Frob authored
-
Sven Neumann authored
updated INSTALL removed color-cycling script applied gimp-simon-20000417-0 --Sven
-
- 17 Apr, 2000 5 commits
-
-
Sven Neumann authored
--Sven
-
Kjartan Maraas authored
2000-04-17 Kjartan Maraas <kmaraas@online.no> * no.po: Updated Norwegian translation.
-
Stanislav Brabec authored
-
Michael Natterer authored
2000-04-17 Michael Natterer <mitch@gimp.org> * plug-ins/helpbrowser/helpbrowser.c (open_browser_dialog): install gimp's colormap to avoid flickering on 8 bit displays.
-
Yuri Syrota authored
-
- 16 Apr, 2000 2 commits
-
-
Michael Natterer authored
2000-04-16 Michael Natterer <mitch@gimp.org> * app/gdisplay_ops.c (gdisplay_shrink_wrap): block all canvas events while resizing the display so the standard canvas "expose" and "configure" handlers are not called. This optimization is valid because shrink_wrap's caller has to do a full recalculation and expose of the gdisplay anyway. For the same reason, I removed the calls to gdisplay_expose_full() and bounds_checking() from shrink_wrap. This should also fix the double exposes Austin reported some time ago. I hope it does not re-break yesterday's fix :) * app/gdisplay_ops.[ch]: removed unused function gdisplay_resize_image(). * app/scale.c (resize_display): do a full expose if one of the "resize_display" or "redisplay" parameters is TRUE.
-
jtl authored
-
- 15 Apr, 2000 3 commits
-
-
jtl authored
-
Manish Singh authored
* autogen.sh: tightened the regexs for build tool sanity checks * configure.in: more gtkxmhtml lib fixes (blargh) -Yosh
-
Michael Natterer authored
2000-04-15 Michael Natterer <mitch@gimp.org> * app/gdisplay_ops.c (gdisplay_shrink_wrap): after resizing the display, check if the window manager placed it offscreen and center it in that case.
-