diff options
Diffstat (limited to 'Doc/library/easydialogs.rst')
-rw-r--r-- | Doc/library/easydialogs.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/easydialogs.rst b/Doc/library/easydialogs.rst index dbc996c..2a3b66b 100644 --- a/Doc/library/easydialogs.rst +++ b/Doc/library/easydialogs.rst @@ -160,14 +160,14 @@ does not occur until the progress bar is next updated, typically via a call to .. attribute:: ProgressBar.curval - The current value (of type integer or long integer) of the progress bar. The + The current value (of type integer) of the progress bar. The normal access methods coerce :attr:`curval` between ``0`` and :attr:`maxval`. This attribute should not be altered directly. .. attribute:: ProgressBar.maxval - The maximum value (of type integer or long integer) of the progress bar; the + The maximum value (of type integer) of the progress bar; the progress bar (thermometer style) is full when :attr:`curval` equals :attr:`maxval`. If :attr:`maxval` is ``0``, the bar will be indeterminate (barber-pole). This attribute should not be altered directly. |