Page 1 of 2

Improvement of Fit to height option.

Posted: Fri Jun 28, 2019 6:55 am
by юра00
Dear experts! I want to suggest an improvement to the Fit to height option. By default, the file after import looks like this (Figure 1). After selecting Fit to height, the view changes (Figure 2). But the fact is that a narrow strip is still preserved from the lower border of the diagram to the bottom of the screen. It is annoying and to complete, I have to stretch the border with the mouse to the bottom of the screen, so that we get a picture3. To avoid double work, is it possible to change the Fit to height action so that the file immediately assumes the form, as in Figure 3, is full. Thank you!

Re: Improvement of Fit to height option.

Posted: Sat Jul 20, 2019 11:27 pm
by юра00
For example, double click. The first - as it is now. And the second - already fully occupies the screen, which is what the topic is about.

Re: Improvement of Fit to height option.

Posted: Sun Jul 21, 2019 9:43 am
by waxcylinder
That "narrow strip" is the horzontal scroll bar - it is a fundamental part of the Audacity window and cannot be removed, It enable you to horizantally scroll the waveform. It has a close sibling the vericla scroll bar at the right of the waveform display.

What you can do if you really want more height to play with is the hide any toolbars you don't want (use View>Toolbars and uncheck them) or float them free of the Audacity window - see: https://manual.audacityteam.org/man/cus ... ayout.html

WC

Re: Improvement of Fit to height option.

Posted: Sun Jul 21, 2019 12:56 pm
by юра00
It is not a "horizontal scroll bar". This is empty space, absolutely unnecessary for me.

Re: Improvement of Fit to height option.

Posted: Sun Jul 21, 2019 5:20 pm
by waxcylinder
OK so you really wanna get rid of the dark gray unused space - just click and drag down on the bottom or the waveform - and for maximum wave height do as I suggested earlier and float the toolbars.

Re: Improvement of Fit to height option.

Posted: Sun Jul 21, 2019 5:40 pm
by steve
Maybe you need a bigger monitor. There's plenty of space on a 1920 x 1080 display:

Screenshot_2019-07-21_18-37-38.png
Screenshot_2019-07-21_18-37-38.png (88 KiB) Viewed 377 times

Re: Improvement of Fit to height option.

Posted: Sun Jul 21, 2019 5:56 pm
by юра00
waxcylinder wrote:
Sun Jul 21, 2019 5:20 pm
OK so you really wanna get rid of the dark gray unused space - just click and drag down on the bottom
The fact of the matter, dear editors, is that dragging the mouse to the bottom comes with each entry. Furious.

Re: Improvement of Fit to height option.

Posted: Sun Jul 21, 2019 6:04 pm
by steve
Personally, I don't see the problem. There's a bit of space below the track - so what? I'm typing here and there is space below my typing :?

Re: Improvement of Fit to height option.

Posted: Sun Jul 21, 2019 7:19 pm
by юра00
So it looks prettier.

Re: Improvement of Fit to height option.

Posted: Sun Jul 21, 2019 7:50 pm
by steve
юра00 wrote:
Sun Jul 21, 2019 7:19 pm
So it looks prettier.
but it is less functional as you can't so easily see if there's another track below, and if there is a track below, you can't bring it into view with a single click.

If you want to build your own customised version, you would need to find "void DoZoomFitV(AudacityProject &project)" in the source file "ViewMenus.cpp", then locate the lines:

Code: Select all

   // Find total height to apportion
   auto height = viewInfo.GetHeight();
   height -= 28;
and change it to:

Code: Select all

   // Find total height to apportion
   auto height = viewInfo.GetHeight();
   height -= 4;
Instructions for building Audacity on Windows are here: https://wiki.audacityteam.org/wiki/Building_On_Windows