Commit 592eda12 authored by Mark Roseman's avatar Mark Roseman Committed by terryjreedy

bpo-24813: IDLE tagline is Integrated Development and Learning Environment (#2451)

Patch by Mark Roseman
parent fae2c353
...@@ -81,7 +81,7 @@ class AboutDialog(Toplevel): ...@@ -81,7 +81,7 @@ class AboutDialog(Toplevel):
logo = Label(frame_background, image=self.icon_image, bg=self.bg) logo = Label(frame_background, image=self.icon_image, bg=self.bg)
logo.grid(row=0, column=0, sticky=W, rowspan=2, padx=10, pady=10) logo.grid(row=0, column=0, sticky=W, rowspan=2, padx=10, pady=10)
byline_text = "Python's Integrated DeveLopment Environment" + 5*'\n' byline_text = "Python's Integrated Development\nand Learning Environment" + 5*'\n'
byline = Label(frame_background, text=byline_text, justify=LEFT, byline = Label(frame_background, text=byline_text, justify=LEFT,
fg=self.fg, bg=self.bg) fg=self.fg, bg=self.bg)
byline.grid(row=2, column=0, sticky=W, columnspan=3, padx=10, pady=5) byline.grid(row=2, column=0, sticky=W, columnspan=3, padx=10, pady=5)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment