Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
angros47 committed Aug 7, 2023
1 parent dba2f42 commit 7a57562
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inc/FLTK/Fl_Window.bi
Expand Up @@ -179,14 +179,14 @@ end extern

private sub Fl_Window.force_position(force as long)
if force then
set_flag(FORCE_POSITION)
set_flag(FORCE_POSITION_)
else
clear_flag(FORCE_POSITION)
clear_flag(FORCE_POSITION_)
end if
end sub

private function Fl_Window.force_position() as long
return iif(flags() and FORCE_POSITION,1,0)
return iif(flags() and FORCE_POSITION_,1,0)
end function

private sub Fl_Window.clear_border()
Expand Down

0 comments on commit 7a57562

Please sign in to comment.