diff options
Diffstat (limited to 'UMain.pas')
| -rw-r--r-- | UMain.pas | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |
