Page 1 of 1

Need a help with Oxygen Editor applying global tooltip font and color defind in plugin

Posted: Wed Sep 18, 2024 4:19 pm
by vishwavaranasi
Hello Team ,
We have a oxygen plugin and where we have implemented a lookandfeel and set some global styles for different swing components.
UIManager.put("ToolTip.background", "some color");
UIManager.put("ToolTip.font", new somestyle(););
UIManager.put("ToolTip.border", BorderFactory.createEmptyBorder());
these changes also affecting the DITA maps manger in oxygen editor when we open the plugin as shown below - see the color and font applied
image.png
is there any settings that oxygen can ignore these ?


Thanks,
vishwa

Re: Need a help with Oxygen Editor applying global tooltip font and color defind in plugin

Posted: Thu Sep 19, 2024 9:48 am
by Radu
Hi Vishwa,
It's natural that Oxygen's UI components obey colors set in the UIManager. There is no setting in Oxygen to control that, ideally you should set your own keys in the UIManager and thus you will stop influencing the entire application.
Regards,
Radu

Re: Need a help with Oxygen Editor applying global tooltip font and color defind in plugin

Posted: Wed Oct 09, 2024 7:21 pm
by vishwavaranasi
Ok Thanks Radu , we will find the ways.