Skip to content
Snippets Groups Projects
  1. Jul 11, 2017
  2. Jul 10, 2017
  3. Jul 09, 2017
  4. Jul 08, 2017
  5. Jul 07, 2017
  6. Jul 06, 2017
  7. Jul 04, 2017
  8. Jul 03, 2017
  9. Jul 02, 2017
  10. Jun 27, 2017
  11. Jun 25, 2017
  12. Jun 24, 2017
  13. Jun 23, 2017
    • Jonathan Wilkes's avatar
      guard against Chromium's counter-intuitive mouseenter/mouseover/mousemove... · 46714d39
      Jonathan Wilkes authored
      guard against Chromium's counter-intuitive mouseenter/mouseover/mousemove events that get generated when a scroll event moves the element under the mouse
      Also, use "mousemove" instead of "mouseover" event as it properly highlights
      the element under the mouse even for single pixel mouse movements. "mouseover"
      would fail to highlight if the keyboard navigation had moved the highlight
      to a different element within view.
      These changes fix the problem of generating a chain of mouse events that
      would mess up keyboard navigation when the mouse pointer happened to be over
      the <ol>. These changes make the interaction between mouse and keyboard much
      more like what's expected in most GUI toolkits. (The only difference now is
      that the menu can't overflow the browser window, but there's nothing we can
      do about that.)
      46714d39
  14. Jun 22, 2017
  15. Jun 21, 2017
  16. Jun 20, 2017
  17. Jun 19, 2017
  18. Jun 18, 2017
  19. Jun 15, 2017
    • Jonathan Wilkes's avatar
      port from Pd Vanilla: readsf fix for short soundfiles · 3523eb49
      Jonathan Wilkes authored
      if the entire soundfile fits into the fifo, then [readsf~] will start
      to loop the file, since the 'drained' test in d_soundfile.c:1937 does
      not trigger.
      the fix is to properly set the fifohead (in the read thread) to the new
      position, even if the read() returned '0' (indicating EOF)
      
      commit 057cb3ee6cc58597a1b74a00a7880c2cfd0a466a
      3523eb49
    • Jonathan Wilkes's avatar
      port from Pd Vanilla: assert table-sizes in tabread4~ · 4b2531ba
      Jonathan Wilkes authored
      tabread4~ needs at least 4 samples to interpolate;
      this patch adds guards in order to not access out-of-bound indices in the table,
      in case the table is smaller than 4 samples.
      
      commit e667894370ec22bc1d1d844443d90f1a76adc03e
      4b2531ba
Loading