mirror of https://github.com/GNOME/gimp.git
replaced the obtrusive drop-shadow by a thin white frame with a subtle
2004-10-01 Sven Neumann <sven@gimp.org> * themes/Default/images/stock-frame-64.png: replaced the obtrusive drop-shadow by a thin white frame with a subtle shadow. Taken from a mockup done by Jimmac. * app/widgets/gimpviewrenderer-frame.c: changed the hardcoded offsets for the new frame image :(
This commit is contained in:
parent
297b53a466
commit
65f0c88485
|
@ -1,3 +1,12 @@
|
|||
2004-10-01 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* themes/Default/images/stock-frame-64.png: replaced the obtrusive
|
||||
drop-shadow by a thin white frame with a subtle shadow. Taken from
|
||||
a mockup done by Jimmac.
|
||||
|
||||
* app/widgets/gimpviewrenderer-frame.c: changed the hardcoded
|
||||
offsets for the new frame image :(
|
||||
|
||||
2004-10-01 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/display/gimpdisplayshell-callbacks.c: no need to include
|
||||
|
|
|
@ -110,10 +110,7 @@ info_dialog_show (InfoDialog *idialog)
|
|||
{
|
||||
g_return_if_fail (idialog != NULL);
|
||||
|
||||
if (GTK_WIDGET_VISIBLE (idialog->shell))
|
||||
gdk_window_show (idialog->shell->window);
|
||||
else
|
||||
gtk_widget_show (idialog->shell);
|
||||
gtk_widget_show (idialog->shell);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -205,10 +205,10 @@ gimp_view_renderer_ensure_frame (GimpViewRenderer *renderer,
|
|||
GTK_ICON_SIZE_DIALOG, NULL);
|
||||
|
||||
/* FIXME: shouldn't be hardcoded */
|
||||
class->frame_left = 2;
|
||||
class->frame_top = 2;
|
||||
class->frame_right = 6;
|
||||
class->frame_bottom = 6;
|
||||
class->frame_left = 3;
|
||||
class->frame_top = 3;
|
||||
class->frame_right = 5;
|
||||
class->frame_bottom = 5;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 549 B After Width: | Height: | Size: 405 B |
Loading…
Reference in New Issue