From 9b1b4b9e32c8ac86e460204bb93e0ddc42ad9e49 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Thu, 21 Oct 2021 21:00:17 +0200 Subject: Node Editor: Introduce color overlay and dashed wires theme setting This patch includes code from D9891 and D12754, so credit goes to Juanfran and Dalai. I updated the patches to work with `master` and with the new overlay toggle. The reason to include both changes as part of one patch is that the dimmed dashed lines work much better together with colored wires. Theme setting for dash opacity: {F11370574, size=full} {F11286177, size=full, autoplay, loop} {F11149912, size=full} For adding the overlay I used `SpaceImageOverlay` as reference, although I'm not familiar with this code so there might be mistakes. Reviewed By: #user_interface, HooglyBoogly Differential Revision: https://developer.blender.org/D12886 --- source/blender/blenloader/intern/versioning_userdef.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/blender/blenloader/intern/versioning_userdef.c') diff --git a/source/blender/blenloader/intern/versioning_userdef.c b/source/blender/blenloader/intern/versioning_userdef.c index 2c01fae3d6a..b95de52a0cd 100644 --- a/source/blender/blenloader/intern/versioning_userdef.c +++ b/source/blender/blenloader/intern/versioning_userdef.c @@ -310,6 +310,10 @@ static void do_versions_theme(const UserDef *userdef, bTheme *btheme) btheme->tui.panel_roundness = 0.4f; } + if (!USER_VERSION_ATLEAST(300, 37)) { + btheme->space_node.dash_alpha = 0.5f; + } + /** * Versioning code until next subversion bump goes here. * -- cgit v1.2.3