Skip to content

Commit

Permalink
Logo art by Reg added to the About menu.
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTenda committed Aug 22, 2012
1 parent 0b637f7 commit c80d5b4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions CoilSnakeGUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from Tkinter import *
import tkFileDialog, tkMessageBox
from ttk import Progressbar
import Image

import CoilSnake
from modules import Rom, Progress
Expand Down Expand Up @@ -38,15 +39,21 @@ def toggleTitles(self):
self.savePrefs()
def aboutMenu(self):
am = Toplevel(self._root)
Label(am, text="CoilSnake " + CoilSnake._VERSION,
font=("Helvetica", 16)).pack(fill=X)
#Label(am, text="CoilSnake " + CoilSnake._VERSION,
# font=("Helvetica", 16)).pack(fill=X)
photo = PhotoImage(file="resources/logo.gif")
photoLabel = Label(am, image=photo)
photoLabel.photo = photo
photoLabel.pack(fill='both', expand=1)

Label(am,
text=
"Released on " + CoilSnake._RELEASE_DATE + ".\n\n"
+ "Created by MrTenda.\n\n"
+ "Created by MrTenda.\n"
+ "Logo art by Reg.\n\n"
+ "With help from\n"
+ " Penguin, Mr. Accident, Goplat,\n"
+ " AnyoneEB, Reg, H.S, Captain Bozo,\n"
+ " Penguin, Reg, Mr. Accident, Goplat,\n"
+ " AnyoneEB, H.S, Captain Bozo,\n"
+ " and the rest of the PK Hack community.",
anchor="w",justify="left",bg="white",borderwidth=5,
relief=GROOVE).pack(
Expand Down
Binary file added resources/logo.gif
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 c80d5b4

Please sign in to comment.