Skip to content

Commit 08e7976

Browse files
committed
add wx.Gauge
1 parent cc798f7 commit 08e7976

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

etg/_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
'checkbox',
151151
#'listbox',
152152
#'checklst',
153-
#'gauge',
153+
'gauge',
154154
'headercol',
155155
'headerctrl',
156156
'srchctrl',

etg/cffi/stream.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ def _PyInputStream_TellI(handle):
5353
@ffi.callback('size_t(*)(void*, size_t, int)')
5454
def _PyInputStream_SeekI(handle, pos, whence):
5555
file = ffi.from_handle(handle)
56-
return file.seek(pos, whence)
56+
file.seek(pos, whence)
57+
return file.tell()
5758
clib.PyInputStream_SeekI = _PyInputStream_SeekI
5859
"""
5960

File renamed without changes.

0 commit comments

Comments
 (0)