13
0
Go to file
Robin Gareus e74cb666ed
Allow to set transparency to 100%
Despite what the docs say Gtk::HScale(0,1,s) with a step-size
s > 0 has a range [0, 1 - s]. GTKMM does allow for a step-size
of zero, which also works around this issue.
This works because gtkmm sidesteps gtk_hscale_new_with_range() which
would fail with g_return_val_if_fail (step != 0.0, NULL);

The reason for this is that gtkmm creates an Adjustment with a
page-size = step-size:

```
Adjustment* adjustment = manage(new Adjustment(min, min, max, step, 10 * step, step));
```
and `gtk_adjustment_configure` limits the range:
```
value = MIN (value, upper - page_size);
```
2023-02-06 01:27:24 +01:00
doc PulseAudio: use correct casing 2022-11-04 13:44:55 +01:00
gtk2_ardour Allow to set transparency to 100% 2023-02-06 01:27:24 +01:00
headless
libs Only use render-group when container is not opaque 2023-02-05 22:34:38 +01:00
luasession Change tools --help URLs to use https 2022-10-24 04:57:30 +02:00
msvc_extra_headers
MSVCardour3
MSVCMixbus3
MSVCvst_scan
session_utils Change tools --help URLs to use https 2022-10-24 04:57:30 +02:00
share Towards arranging sections 2023-01-23 04:07:46 +01:00
tools configuration_metadata.cc should be manually generated whenever metadata changes, so just commit current version 2023-01-28 08:27:56 -07:00
.dir-locals.el
.gitattributes
.gitignore
ardour.1 Update tracker/reference URLs to prefer HTTPs 2022-10-24 04:59:20 +02:00
COPYING
nutempo-todo
PACKAGER_README
README
README-GITHUB.txt Update tracker/reference URLs to prefer HTTPs 2022-10-24 04:59:20 +02:00
system_config
TRANSLATORS Update tracker/reference URLs to prefer HTTPs 2022-10-24 04:59:20 +02:00
waf
wscript Fix AVX512 detection 2023-02-05 16:14:49 +01:00

Please see the Ardour web site at https://ardour.org/ for all documentation..

For information on building ardour: 
      
     https://ardour.org/development.html