Skip to content

Commit

Permalink
feat: add "donate with PayPal"
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangjiequan committed Nov 22, 2023
1 parent ce6bae6 commit 5ff504f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AssetStudioGUI/DonateForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ public DonateForm()
private void InitializeComponent()
{
this.Icon = global::AssetStudioGUI.Properties.Resources._as;
this.Size = new Size(613, 420);
this.Size = new Size(840, 470);
this.Text = "Donate to AssetStudio";

Label label = new Label();
label.Text = "AssetStudio is a free and open-source software.\nIf you like it and find it helpful, you can buy me a coffee!";
label.AutoSize = false;
label.Size = new Size(613, 50);
label.Size = new Size(840, 50);
label.Location = new Point(10, 10);
label.Font = new Font(label.Font.FontFamily, 12, FontStyle.Regular);
label.Padding = new Padding(0, 5, 0, 5);

PictureBox pictureBox = new PictureBox();
pictureBox.Size = new Size(573, 306);
pictureBox.Size = new Size(800, 350);
pictureBox.Location = new Point(10, 60);
pictureBox.SizeMode = PictureBoxSizeMode.StretchImage;
pictureBox.Image = global::AssetStudioGUI.Properties.Resources.donate;
Expand Down
Binary file modified AssetStudioGUI/Resources/donate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5ff504f

Please sign in to comment.