Skip to content
Snippets Groups Projects
  1. Mar 06, 2025
  2. Mar 04, 2025
  3. Feb 24, 2025
  4. Feb 23, 2025
  5. Feb 22, 2025
  6. Feb 21, 2025
  7. Feb 20, 2025
  8. Feb 19, 2025
  9. Feb 14, 2025
  10. Feb 08, 2025
  11. Feb 06, 2025
  12. Feb 05, 2025
  13. Feb 04, 2025
  14. Feb 03, 2025
  15. Feb 01, 2025
  16. Jan 30, 2025
  17. Jan 29, 2025
  18. Jan 27, 2025
    • Albrecht Schlosser's avatar
      CMake: fix include directories of bundled image libs · 5a0551df
      Albrecht Schlosser authored
      If FLTK has been built with bundled image libs the include directory
      of the *installed* library headers is 'FL/images' relative to the
      normal 'include' directory.
      
      The CMake property "include_directories" is now added to the installed
      fltk_images library so it is used when building user programs with
      bundled image libs.
      5a0551df
  19. Jan 26, 2025
  20. Jan 24, 2025
  21. Jan 22, 2025
    • Albrecht Schlosser's avatar
      Fix Fl_Table_Row inconsistencies, final part (#1187) · 0c2aa40b
      Albrecht Schlosser authored
      Adjust internal vector sizes before and after changing the rows() in
      the base class to avoid inconsisten sizes.
      
      Note that the crash reported by the OP of PR #1187 was caused by
      more than one issue, not only the one fixed here. Thanks for the
      original patch to the author, GitHub user 'basiliscos'.
      0c2aa40b
    • ManoloFLTK's avatar
      Windows: replace "Arial" by "Microsoft Sans Serif" for the FL_HELVETICA font family · 915ea80f
      ManoloFLTK authored
      Users who need the old behavior for strict backwards compatibility under Windows can load the previous (Arial) font at program startup with only a few lines of code:
      
      #ifdef _WIN32
        // reset Windows fonts to pre-1.4.2 state
        Fl::set_font(FL_HELVETICA,     " Arial");
        Fl::set_font(FL_HELVETICA + 1, "BArial");
        Fl::set_font(FL_HELVETICA + 2, "IArial");
        Fl::set_font(FL_HELVETICA + 3, "PArial");
      #endif
      915ea80f
Loading