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
8c1ab14a
Kaydet (Commit)
8c1ab14a
authored
Kas 21, 2001
tarafından
Steven M. Gava
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix for redundant empty parent window when invoked from idle shell window
üst
3b55a891
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
aboutDialog.py
Lib/idlelib/aboutDialog.py
+3
-5
No files found.
Lib/idlelib/aboutDialog.py
Dosyayı görüntüle @
8c1ab14a
...
...
@@ -21,11 +21,10 @@ class AboutDialog(Toplevel):
self
.
configure
(
borderwidth
=
5
)
self
.
geometry
(
"+
%
d+
%
d"
%
(
parent
.
winfo_rootx
()
+
30
,
parent
.
winfo_rooty
()
+
30
))
#elguavas - config placeholders til config stuff completed
self
.
bg
=
"#555555"
self
.
bg
=
"#777777"
self
.
fg
=
"#ffffff"
#no ugly bold default font on *nix
font
=
tkFont
.
Font
(
self
,
Label
()
.
cget
(
'font'
))
font
=
tkFont
.
Font
(
self
,
Label
(
self
)
.
cget
(
'font'
))
if
os
.
name
==
'posix'
:
font
.
config
(
weight
=
NORMAL
)
self
.
textFont
=
font
...
...
@@ -39,8 +38,7 @@ class AboutDialog(Toplevel):
self
.
buttonOk
.
focus_set
()
#key bindings for this dialog
self
.
bind
(
'<Alt-c>'
,
self
.
CreditsButtonBinding
)
#credits button
#self.bind('<Alt-l>',self.LicenseButtonBinding) #license button
self
.
bind
(
'<Alt-r>'
,
self
.
LicenseButtonBinding
)
#readme button
self
.
bind
(
'<Alt-l>'
,
self
.
LicenseButtonBinding
)
#license button
self
.
bind
(
'<Return>'
,
self
.
Ok
)
#dismiss dialog
self
.
bind
(
'<Escape>'
,
self
.
Ok
)
#dismiss dialog
self
.
wait_window
()
...
...
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