We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc798f7 commit 08e7976Copy full SHA for 08e7976
etg/_core.py
@@ -150,7 +150,7 @@
150
'checkbox',
151
#'listbox',
152
#'checklst',
153
- #'gauge',
+ 'gauge',
154
'headercol',
155
'headerctrl',
156
'srchctrl',
etg/cffi/stream.py
@@ -53,7 +53,8 @@ def _PyInputStream_TellI(handle):
53
@ffi.callback('size_t(*)(void*, size_t, int)')
54
def _PyInputStream_SeekI(handle, pos, whence):
55
file = ffi.from_handle(handle)
56
- return file.seek(pos, whence)
+ file.seek(pos, whence)
57
+ return file.tell()
58
clib.PyInputStream_SeekI = _PyInputStream_SeekI
59
"""
60
etg/unfinished/gauge.py renamed to etg/gauge.py
0 commit comments