master
Melroy van den Berg 2020-12-09 18:52:21 +01:00
parent 513b2a9760
commit d9063b9c5b
5 changed files with 4 additions and 4 deletions

BIN
misc/browser_logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

BIN
misc/browser_logo.xcf Normal file

Binary file not shown.

BIN
misc/browser_logo_small.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -3,12 +3,12 @@
About::About() {
std::vector<Glib::ustring> devs;
devs.push_back("Melroy van den Berg <melroy@melroy.org>");
icon.set_from_icon_name("emblem-web", Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
logo.set("../../misc/browser_logo_small.png");
set_name("Browser");
set_version("0.1.0");
set_comments("The fastest decentralized browser on planet Earth.");
set_icon(icon.get_pixbuf());
set_comments("The fastest decentralized & distributed Browser on planet Earth.");
set_logo(logo.get_pixbuf());
set_website("https://melroy.org/");
set_copyright("Copyright © 2020-2021 Melroy van den Berg");
set_authors(devs);

View File

@ -17,6 +17,6 @@ public:
void show_about();
void hide_about(int response);
protected:
Gtk::Image icon; /*!< The logo of the app */
Gtk::Image logo; /*!< The logo of the app */
};
#endif