diff options
author | Sebastian Geerken <devnull@localhost> | 2014-10-19 00:29:52 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-10-19 00:29:52 +0200 |
commit | 356751ca1ee7df3819dfcfcece24cfbdb37fba7c (patch) | |
tree | 8cffd8d8235aab30ef267695b8b6bf2bfa191e53 /dw/layout.cc | |
parent | 021d425fea3bdc727328ccbe24f508453a4ada36 (diff) |
Changes in drawing process: is now interruptable. (Some errors left.)
Diffstat (limited to 'dw/layout.cc')
-rw-r--r-- | dw/layout.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dw/layout.cc b/dw/layout.cc index 60cea8e0..43c27dd8 100644 --- a/dw/layout.cc +++ b/dw/layout.cc @@ -704,7 +704,7 @@ void Layout::draw (View *view, Rectangle *area) widgetDrawArea.width = intersection.width; widgetDrawArea.height = intersection.height; - topLevel->draw (view, &widgetDrawArea); + topLevel->drawToplevel (view, &widgetDrawArea); view->finishDrawing (&intersection); } |