Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
GIMP
Commits
43da2d72
Commit
43da2d72
authored
Feb 18, 1998
by
Sven Neumann
Browse files
fixed refcounting for the splash-image
--Sven
parent
d1d77d30
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
43da2d72
Wed Feb 18 17:56:40 MET 1998 Sven Neumann <sven@gimp.org>
* app/app_procs.c: fixed refcounting for the splash-image
Tue Feb 17 21:23:20 MET 1998 Sven Neumann <sven@gimp.org>
* app/fileops.c: hide the help buttons since we have no
...
...
app/app_procs.c
View file @
43da2d72
...
...
@@ -211,7 +211,6 @@ splash_logo_load (GtkWidget *window)
fclose
(
fp
);
return
0
;
}
gtk_preview_draw_row
(
GTK_PREVIEW
(
preview
),
pixelrow
,
0
,
i
,
logo_width
);
}
...
...
@@ -221,7 +220,7 @@ splash_logo_load (GtkWidget *window)
logo_pixmap
,
window
->
style
->
black_gc
,
0
,
0
,
0
,
0
,
logo_width
,
logo_height
);
gtk_widget_
destroy
(
preview
);
gtk_widget_
unref
(
preview
);
g_free
(
pixelrow
);
fclose
(
fp
);
...
...
@@ -254,12 +253,6 @@ splash_text_draw (GtkWidget *widget)
((
logo_area_width
-
gdk_string_width
(
font
,
AUTHORS
))
/
2
),
(
0
.
7
*
logo_area_height
),
AUTHORS
);
/* gdk_draw_rectangle (widget->window,
widget->style->black_gc,
FALSE,
1, 1, (logo_area_width - 2), (logo_area_height - 2));
*/
}
static
void
...
...
@@ -325,7 +318,7 @@ make_initialization_status_window(void)
if
(
no_splash_image
==
FALSE
&&
splash_logo_load_size
(
win_initstatus
))
{
show_logo
=
TRUE
;
show_logo
=
SHOW_LATER
;
}
vbox
=
gtk_vbox_new
(
FALSE
,
4
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment