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
47f29a67
Kaydet (Commit)
47f29a67
authored
Tem 09, 2007
tarafından
Ronald Oussoren
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch 1693258: Fix for duplicate "preferences" menu-OS X
Backport of 56204.
üst
43f1f68b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
17 deletions
+25
-17
macosxSupport.py
Lib/idlelib/macosxSupport.py
+25
-17
No files found.
Lib/idlelib/macosxSupport.py
Dosyayı görüntüle @
47f29a67
...
...
@@ -80,32 +80,40 @@ def overrideRootMenu(root, flist):
import
configDialog
configDialog
.
ConfigDialog
(
root
,
'Settings'
)
root
.
bind
(
'<<about-idle>>'
,
about_dialog
)
root
.
bind
(
'<<open-config-dialog>>'
,
config_dialog
)
if
flist
:
root
.
bind
(
'<<close-all-windows>>'
,
flist
.
close_all_callback
)
for
mname
,
entrylist
in
Bindings
.
menudefs
:
menu
=
menudict
.
get
(
mname
)
if
not
menu
:
continue
for
entry
in
entrylist
:
if
not
entry
:
menu
.
add_separator
()
###check if Tk version >= 8.4.14; if so, use hard-coded showprefs binding
tkversion
=
root
.
tk
.
eval
(
'info patchlevel'
)
if
tkversion
>=
'8.4.14'
:
Bindings
.
menudefs
[
0
]
=
(
'application'
,
[
(
'About IDLE'
,
'<<about-idle>>'
),
None
,
])
root
.
createcommand
(
'::tk::mac::ShowPreferences'
,
config_dialog
)
else
:
for
mname
,
entrylist
in
Bindings
.
menudefs
:
menu
=
menudict
.
get
(
mname
)
if
not
menu
:
continue
else
:
label
,
eventname
=
entry
underline
,
label
=
prepstr
(
label
)
accelerator
=
get_accelerator
(
Bindings
.
default_keydefs
,
for
entry
in
entrylist
:
if
not
entry
:
menu
.
add_separator
()
else
:
label
,
eventname
=
entry
underline
,
label
=
prepstr
(
label
)
accelerator
=
get_accelerator
(
Bindings
.
default_keydefs
,
eventname
)
def
command
(
text
=
root
,
eventname
=
eventname
):
text
.
event_generate
(
eventname
)
menu
.
add_command
(
label
=
label
,
underline
=
underline
,
def
command
(
text
=
root
,
eventname
=
eventname
):
text
.
event_generate
(
eventname
)
menu
.
add_command
(
label
=
label
,
underline
=
underline
,
command
=
command
,
accelerator
=
accelerator
)
def
setupApp
(
root
,
flist
):
"""
Perform setup for the OSX application bundle.
...
...
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