From 07f4fd43802183721e3e69f2d828af5f5820ea5a Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Mon, 20 May 2019 13:30:57 +0200 Subject: More accurate implementation of Fl_Cocoa_Window_Driver::decoration_sizes(). --- src/Fl_cocoa.mm | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/Fl_cocoa.mm') diff --git a/src/Fl_cocoa.mm b/src/Fl_cocoa.mm index f1f3d795e..f7365630b 100644 --- a/src/Fl_cocoa.mm +++ b/src/Fl_cocoa.mm @@ -1831,6 +1831,11 @@ static int get_window_frame_sizes(Fl_Window *win, int *pbx, int *pby) { return top; } +void Fl_Cocoa_Window_Driver::decoration_sizes(int *top, int *left, int *right, int *bottom) { + *top = get_window_frame_sizes(pWindow, left, bottom); + *right = *left; +} + /* * smallest x coordinate in screen space of work area of menubar-containing display */ -- cgit v1.2.3