Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b6d24d97
Commit
b6d24d97
authored
Oct 22, 2012
by
Ned Deily
Browse files
Options
Browse Files
Download
Plain Diff
Issue #15853: merge 3.2 -> 3.3
parents
abb0febd
fdf0f274
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
Lib/idlelib/NEWS.txt
Lib/idlelib/NEWS.txt
+3
-0
Lib/idlelib/configDialog.py
Lib/idlelib/configDialog.py
+3
-4
No files found.
Lib/idlelib/NEWS.txt
View file @
b6d24d97
...
@@ -4,6 +4,9 @@ What's New in IDLE 3.3.1?
...
@@ -4,6 +4,9 @@ What's New in IDLE 3.3.1?
- Issue #16226: Fix IDLE Path Browser crash.
- Issue #16226: Fix IDLE Path Browser crash.
(Patch by Roger Serwy)
(Patch by Roger Serwy)
- Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu
with certain versions of Tk 8.5. Initial patch by Kevin Walzer.
What's New in IDLE 3.3.0?
What's New in IDLE 3.3.0?
=========================
=========================
...
...
Lib/idlelib/configDialog.py
View file @
b6d24d97
...
@@ -821,10 +821,9 @@ class ConfigDialog(Toplevel):
...
@@ -821,10 +821,9 @@ class ConfigDialog(Toplevel):
fontWeight
=
tkFont
.
BOLD
fontWeight
=
tkFont
.
BOLD
else
:
else
:
fontWeight
=
tkFont
.
NORMAL
fontWeight
=
tkFont
.
NORMAL
size
=
self
.
fontSize
.
get
()
newFont
=
(
fontName
,
self
.
fontSize
.
get
(),
fontWeight
)
self
.
editFont
.
config
(
size
=
size
,
self
.
labelFontSample
.
config
(
font
=
newFont
)
weight
=
fontWeight
,
family
=
fontName
)
self
.
textHighlightSample
.
configure
(
font
=
newFont
)
self
.
textHighlightSample
.
configure
(
font
=
(
fontName
,
size
,
fontWeight
))
def
SetHighlightTarget
(
self
):
def
SetHighlightTarget
(
self
):
if
self
.
highlightTarget
.
get
()
==
'Cursor'
:
#bg not possible
if
self
.
highlightTarget
.
get
()
==
'Cursor'
:
#bg not possible
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment