Hello Graeme, thanks for the v16.0 Beta preview.
I quickly had two “issues” with it (on Windows), and wonder if they are already addressed:
- The tabs became very tall, even when not using the title bar tab mode and after decreasing the font size. Is there a setting to decrease their height back to the original size?
- Updating my VS2022-like theme, I can no longer pick color opacities in the settings theme color table. Clicking the slider just closes the color popup, and adjusting it with the keyboard does not apply the chosen opacity. Sadly, the 1tm theme files seem to have a proprietary format, and I cannot figure out where to change the opacity in them aswell.
I also have some questions / feature requests:
- Can the decimal/hex display format be made available for the template results Start and Size columns aswell?
- The following template code would complain that
Variable 'x' has already been declared
if there is more than 1 row:
I know that modern variable scope is not a thing in templates yet, but is there a chance to at least seefor (int y = 0; y < rows; ++y) { for (int x = 0; x < cols; ++x) {
x
andy
becoming scoped to theirfor
-blocks itself, allowing loops and reuse like this?
Thank you for your continued work on this product.