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
d617c57d
Kaydet (Commit)
d617c57d
authored
Eyl 22, 1996
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Changed default background yield time to 1 tick
üst
b9e5e141
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
macglue.c
Mac/Python/macglue.c
+14
-1
No files found.
Mac/Python/macglue.c
Dosyayı görüntüle @
d617c57d
...
...
@@ -129,7 +129,7 @@ static void PyMac_DoYield Py_PROTO((int));
static
long
interval_fg
=
12
;
static
long
interval_bg
=
6
;
static
long
yield_fg
=
1
;
static
long
yield_bg
=
1
2
;
static
long
yield_bg
=
2
;
static
long
lastyield
;
static
int
in_foreground
;
...
...
@@ -543,10 +543,23 @@ void
SIOUXDoAboutBox
(
void
)
{
DialogPtr
theDialog
;
WindowRef
theWindow
;
CGrafPtr
thePort
;
short
item
;
short
xpos
,
ypos
,
width
,
height
,
swidth
,
sheight
;
if
(
(
theDialog
=
GetNewDialog
(
ABOUT_ID
,
NULL
,
(
WindowPtr
)
-
1
))
==
NULL
)
return
;
theWindow
=
GetDialogWindow
(
theDialog
);
thePort
=
GetWindowPort
(
theWindow
);
width
=
thePort
->
portRect
.
right
-
thePort
->
portRect
.
left
;
height
=
thePort
->
portRect
.
bottom
-
thePort
->
portRect
.
top
;
swidth
=
qd
.
screenBits
.
bounds
.
right
-
qd
.
screenBits
.
bounds
.
left
;
sheight
=
qd
.
screenBits
.
bounds
.
bottom
-
qd
.
screenBits
.
bounds
.
top
-
LMGetMBarHeight
();
xpos
=
(
swidth
-
width
)
/
2
;
ypos
=
(
sheight
-
height
)
/
2
+
LMGetMBarHeight
();
MoveWindow
(
theWindow
,
xpos
,
ypos
,
0
);
ShowWindow
(
theWindow
);
ModalDialog
(
NULL
,
&
item
);
DisposeDialog
(
theDialog
);
}
...
...
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