View Single Post
Old 08-13-2019, 07:25 AM   #23
Tale
Human being with feelings
 
Tale's Avatar
 
Join Date: Jul 2008
Location: The Netherlands
Posts: 3,652
Default

Quote:
# JSFX scope/spectrograph/analyzer small window improvements, context menu
Cool!

Minor issue: On macOS with retina the context menu isn't displayed where you click, I guess because it should consider gfx_ext_retina. This seems to fix it (in gfxanalyzer):

Code:
(mouse_cap==0 && last_mouse_cap==2) ? (
  gfx_x=mouse_x/gfx_ext_retina;
  gfx_y=mouse_y/gfx_ext_retina;
EDIT: Also:

Code:
gfx_printf("FFT %d\n%ddB f",16<<slider1,slider2);
Is that " f" intentional?

Last edited by Tale; 08-13-2019 at 07:32 AM.
Tale is offline   Reply With Quote