diff options
| author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2007-07-17 18:06:39 +0200 | 
|---|---|---|
| committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2007-07-17 18:06:39 +0200 | 
| commit | 68c0b5c54dd960a0563e0280ebed6033384efca0 (patch) | |
| tree | 9ceb5d03f8ec8c703fdd353e92b61ed298d77aa7 | |
| parent | 8a2f9dde14c0370466d001832e63c5ab6c32c828 (diff) | |
fix long standing redraw bug
| -rw-r--r-- | src/flpsed.cxx | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flpsed.cxx b/src/flpsed.cxx index d9da6f4..b5b0f60 100644 --- a/src/flpsed.cxx +++ b/src/flpsed.cxx @@ -566,7 +566,7 @@ int main(int argc, char** argv) {  		page_sel->callback(page_sel_cb);  		page_sel->end();  		scroll = new Fl_Scroll(40, 55, win->w()-40, win->h()-55); -		psed_p = new PSEditor(0, 0, 700, 900); +		psed_p = new PSEditor(40, 55, 700, 900);  		psed_p->property_changed_callback(property_changed_cb);  		scroll->end();  | 
