Skip to content

Commit bcc3b78

Browse files
committed
Finishing the color picker fix from the last commit
1 parent 3f7c3d8 commit bcc3b78

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

durdraw/durdraw_ui_widgets_curses.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def updateFgPicker(self):
299299
if fg == self.colorPicker.caller.colorfg:
300300
curses_addstr(self.window, line, col, '*', color_pair)
301301
else:
302-
curses_addstr(self.window, line, col, chr(self.fillChar), color_pair)
302+
curses_addstr(self.window, line, col, self.fillChar, color_pair)
303303
col += 1
304304

305305
def showFgPicker(self):

durdraw/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def undosize(size_s):
2424
raise argparse.ArgumentTypeError("Undo size must be between 1 and 1000.")
2525

2626
def main():
27-
DUR_VER = '0.18.1'
27+
DUR_VER = '0.18.2'
2828
DUR_FILE_VER = 5
2929
DEBUG_MODE = False # debug = makes debug_write available, sends more notifications
3030
durlogo = '''

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Durdraw
55
_| |__ __ _____ __| |_____ _____ __ __ __
66
/ _ | | | __| _ | __| _ | | | |\
77
/_____|_____|__|__|_____|__|___\____|________| | Durr....
8-
\_____________________________________________\| v 0.18.1
8+
\_____________________________________________\| v 0.18.2
99

1010

1111
![durdraw-help-screen-256color](https://user-images.githubusercontent.com/261501/214016536-9413463f-2fe4-4298-8022-95daeabbe894.png)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='durdraw',
9-
version='0.18.1',
9+
version='0.18.2',
1010
author='Sam Foster',
1111
author_email='samfoster@gmail.com',
1212
description='Animated Color ASCII and Unicode Art Editor',

0 commit comments

Comments
 (0)