summaryrefslogtreecommitdiff
path: root/UMain.pas
diff options
context:
space:
mode:
Diffstat (limited to 'UMain.pas')
-rw-r--r--UMain.pas3
1 files changed, 2 insertions, 1 deletions
diff --git a/UMain.pas b/UMain.pas
index 15110f3..69220e8 100644
--- a/UMain.pas
+++ b/UMain.pas
@@ -277,6 +277,7 @@ function form_event_handler(widget: PGtkWidget; event: PGdkEvent; user_data: gpo
procedure TFMain.FormCreate(Sender: TObject);
begin
ReportGTKVersion;
+ SetupAppIcon;
StartUp := True;
RunningEscSensitive := 0;
Editing := False;
@@ -5418,7 +5419,7 @@ begin
if (libGnomeUI2Handle = nil) or (@gnome_about_new = nil) then
Application.MessageBox(Format(LANGPluginAboutInside, [VFSItem.ModuleName, VFSItem.ModuleAbout, VFSItem.ModuleCopyright]))
else begin
- AboutBox := gnome_about_new(PChar(VFSItem.ModuleName), nil, PChar(VFSItem.ModuleCopyright), PChar(VFSItem.ModuleAbout), @Authors, nil, nil, nil);
+ AboutBox := gnome_about_new(PChar(VFSItem.ModuleName), nil, PChar(VFSItem.ModuleCopyright), PChar(VFSItem.ModuleAbout), @Authors, nil, nil, AppIcon64.FPixbuf);
gtk_window_set_transient_for(GTK_WINDOW(AboutBox), GTK_WINDOW(FMain.FWidget));
gtk_dialog_run(GTK_DIALOG(AboutBox));
end;