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
46ebd4a6
Commit
46ebd4a6
authored
Jul 27, 2019
by
Tal Einat
Committed by
Terry Jan Reedy
Jul 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-17535: Increase line number horizontal padding by 2 pixels (GH-14959)
parent
91e49575
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Lib/idlelib/sidebar.py
Lib/idlelib/sidebar.py
+1
-1
No files found.
Lib/idlelib/sidebar.py
View file @
46ebd4a6
...
...
@@ -51,7 +51,7 @@ class BaseSideBar:
_padx
,
pady
=
get_widget_padding
(
self
.
text
)
self
.
sidebar_text
=
tk
.
Text
(
self
.
parent
,
width
=
1
,
wrap
=
tk
.
NONE
,
padx
=
0
,
pady
=
pady
,
padx
=
2
,
pady
=
pady
,
borderwidth
=
0
,
highlightthickness
=
0
)
self
.
sidebar_text
.
config
(
state
=
tk
.
DISABLED
)
self
.
text
[
'yscrollcommand'
]
=
self
.
redirect_yscroll_event
...
...
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