Search found 3008 matches

by sfernandez
06 May 2024, 21:49
Forum: General Discussion
Replies: 3
Views: 120

Re: CharacterSpacing is not inherited from container

So the "magic" is just the Inherits flag? Interesting, I knew about the flag, but I thought there's something special in the TextBlock itself.
Yes, only that... this was an easy fix :)
by sfernandez
06 May 2024, 18:56
Forum: General Discussion
Replies: 10
Views: 1675

Re: ToolTip in WorldSpace UI

Sure, note added to the bugtracker ticket with Android arm64 patched library.
by sfernandez
06 May 2024, 17:50
Forum: General Discussion
Replies: 3
Views: 120

Re: CharacterSpacing is not inherited from container

The property is not registered with the Inherits flag, this is not correct.
Could you please create a ticket in our bugtracker and we will fix it?

Your workaround is the best solution right now.
by sfernandez
02 May 2024, 12:06
Forum: General Discussion
Replies: 1
Views: 102

Re: Update NoesisGUI for Unreal Engine 5.4

Hi, we updated our code to be compatible for UE5.4 and will be available in the upcoming 3.2.4 version, which will be released in a few weeks. I attach a patch here in the meantime: Index: Plugins/NoesisGUI/Source/NoesisRuntime/Classes/NoesisRive.h ===================================================...
by sfernandez
02 May 2024, 11:59
Forum: General Discussion
Replies: 1
Views: 94

Re: Font Importer issue in Unreal whereas font is being displayed correctly

Hello, can you post here the file/folder structure of the related assets (source directories and content directories)? I will try yo reproduce the problem.
Or if you can attach a minimal project reproducing the error it would be even better.
Thanks!
by sfernandez
30 Apr 2024, 21:13
Forum: General Discussion
Replies: 10
Views: 1675

Re: ToolTip in WorldSpace UI

Added a note with a link to download a patched library in the ticket: #2721
by sfernandez
30 Apr 2024, 21:05
Forum: General Discussion
Replies: 3
Views: 173

Re: Don't understand how to set grid column of data collection

Glad to help, marking this as solved then.
by sfernandez
29 Apr 2024, 16:03
Forum: General Discussion
Replies: 3
Views: 181

Re: Tab Control Content Presenter gets Local Vertical Alignment Top instead of respecting the control template

Hi, The PART_SelectedContentHost alignment is overriden by the selected TabItem Horizontal/VerticalContentAlignment properties of the tab as you can see in the WPF code here (we do the same): https://referencesource.microsoft.com/#PresentationFramework/src/Framework/System/Windows/Controls/TabContro...
by sfernandez
29 Apr 2024, 12:29
Forum: General Discussion
Replies: 4
Views: 173

Re: PageLeft and PageRight focus traversal

PageLeft/Right keys are used to scroll pages in a ScrollViewer only. Apart from that we use GamepadPageLeft/Right to simulate Ctrl+Tab focus navigation, for example to change between tabs in a TabControl. Is this what you mean? Anyway, if you need to override that behavior you need to handle those k...
by sfernandez
29 Apr 2024, 11:20
Forum: General Discussion
Replies: 3
Views: 173

Re: Don't understand how to set grid column of data collection

Hello, Each of the items in the collection is wrapped with a "container" when added to the ItemsControl.ItemsPanel. For example, in a ListBox each item will be placed as the content of a ListBoxItem, in a ComboBox inside a ComboBoxItem... and in a plain ItemsControl the container will be a...