Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
cca976b1
Kaydet (Commit)
cca976b1
authored
Eki 10, 2007
tarafından
Kurt B. Kaiser
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Allow cursor color change w/o restart. Patch 1725576 Tal Einat.
üst
68995867
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
NEWS.txt
Lib/idlelib/NEWS.txt
+2
-0
configDialog.py
Lib/idlelib/configDialog.py
+3
-0
No files found.
Lib/idlelib/NEWS.txt
Dosyayı görüntüle @
cca976b1
...
@@ -3,6 +3,8 @@ What's New in IDLE 2.6a1?
...
@@ -3,6 +3,8 @@ What's New in IDLE 2.6a1?
*Release date: XX-XXX-200X*
*Release date: XX-XXX-200X*
- Update cursor color without restarting. Patch 1725576 Tal Einat.
- Allow keyboard interrupt only when user code is executing in subprocess.
- Allow keyboard interrupt only when user code is executing in subprocess.
Patch 1225 Tal Einat (reworked from IDLE-Spoon).
Patch 1225 Tal Einat (reworked from IDLE-Spoon).
...
...
Lib/idlelib/configDialog.py
Dosyayı görüntüle @
cca976b1
...
@@ -1118,12 +1118,15 @@ class ConfigDialog(Toplevel):
...
@@ -1118,12 +1118,15 @@ class ConfigDialog(Toplevel):
def
ActivateConfigChanges
(
self
):
def
ActivateConfigChanges
(
self
):
"Dynamically apply configuration changes"
"Dynamically apply configuration changes"
winInstances
=
self
.
parent
.
instance_dict
.
keys
()
winInstances
=
self
.
parent
.
instance_dict
.
keys
()
theme
=
idleConf
.
CurrentTheme
()
cursor_color
=
idleConf
.
GetHighlight
(
theme
,
'cursor'
,
fgBg
=
'fg'
)
for
instance
in
winInstances
:
for
instance
in
winInstances
:
instance
.
ResetColorizer
()
instance
.
ResetColorizer
()
instance
.
ResetFont
()
instance
.
ResetFont
()
instance
.
set_notabs_indentwidth
()
instance
.
set_notabs_indentwidth
()
instance
.
ApplyKeybindings
()
instance
.
ApplyKeybindings
()
instance
.
reset_help_menu_entries
()
instance
.
reset_help_menu_entries
()
instance
.
text
.
configure
(
insertbackground
=
cursor_color
)
def
Cancel
(
self
):
def
Cancel
(
self
):
self
.
destroy
()
self
.
destroy
()
...
...
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