We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 458be05 commit 21fe4ccCopy full SHA for 21fe4cc
material_maker/panels/graph_edit/graph_edit.gd
@@ -1856,8 +1856,11 @@ func colorize_nodes() -> void:
1856
mm_globals.set_config("color_picker_color_mode", picker.color_mode)
1857
mm_globals.set_config("color_picker_shape", picker.picker_shape))
1858
1859
- popup.content_scale_factor = csf
1860
- popup.min_size = popup.get_contents_minimum_size() * csf
+ if get_tree().root.gui_embed_subwindows:
+ csf = 1.0
1861
+ else:
1862
+ popup.content_scale_factor = csf
1863
+ popup.min_size = popup.get_contents_minimum_size() * csf
1864
popup.position = get_screen_position() + get_local_mouse_position() * csf
1865
1866
picker.color = nodes[0].generator.color
0 commit comments