diff options
Diffstat (limited to 'src/Fl_Copy_Surface.cxx')
| -rw-r--r-- | src/Fl_Copy_Surface.cxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Fl_Copy_Surface.cxx b/src/Fl_Copy_Surface.cxx index 53881c62e..011d0f06d 100644 --- a/src/Fl_Copy_Surface.cxx +++ b/src/Fl_Copy_Surface.cxx @@ -63,6 +63,10 @@ int Fl_Copy_Surface::printable_rect(int *w, int *h) { return 1; } +void Fl_Copy_Surface::draw_decorated_window(Fl_Window *win, int x_offset, int y_offset) { + if (platform_surface) platform_surface->draw_decorated_window(win, x_offset, y_offset); +} + /** \cond DriverDev \addtogroup DriverDeveloper @@ -72,6 +76,11 @@ int Fl_Copy_Surface_Driver::printable_rect(int *w, int *h) { *w = width; *h = height; return 0; } + +void Fl_Copy_Surface_Driver::draw_decorated_window(Fl_Window *win, int x_offset, int y_offset) { + Fl_Widget_Surface::draw_decorated_window(win, x_offset, y_offset); +} + /** \} \endcond |
