2013-07-28 23:28:20 +00:00
|
|
|
--- a/src/display/canvas.h
|
|
|
|
+++ b/src/display/canvas.h
|
2011-04-14 20:49:19 +00:00
|
|
|
@@ -48,7 +48,7 @@ class Canvas {
|
2011-04-13 22:14:18 +00:00
|
|
|
public:
|
|
|
|
typedef std::vector<Attributes> attributes_list;
|
|
|
|
|
2013-07-28 23:28:20 +00:00
|
|
|
- Canvas(int x = 0, int y = 0, int width = 0, int height = 0);
|
|
|
|
+ Canvas(int x = 0, int y = 0, int width = 1, int height = 1);
|
2011-04-13 22:14:18 +00:00
|
|
|
~Canvas() { delwin(m_window); }
|
|
|
|
|
2013-07-28 23:28:20 +00:00
|
|
|
void refresh() { wnoutrefresh(m_window); }
|