From 354ea866cdd3dc065180d0d5877e597c8cd268f7 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sun, 30 May 2010 16:25:48 -0400 Subject: [PATCH] python version of with_chgat now has correctly formatted text --- basics/with_chgat.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/basics/with_chgat.py b/basics/with_chgat.py index 12ade54..8b16b07 100644 --- a/basics/with_chgat.py +++ b/basics/with_chgat.py @@ -5,8 +5,7 @@ import curses def with_chgat(stdscr): curses.init_pair(1, curses.COLOR_CYAN, curses.COLOR_BLACK) stdscr.addstr("A Big string which i didn't care to type fully ", - curses.color_pair(1)) -# stdscr.chgat(0, 0, -1, curses.A_BLINK) + curses.color_pair(1) | curses.A_BLINK) stdscr.refresh() stdscr.getch()