Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to have the menu mnemonic underline appearing always?

When a mnemonic character "_" is added to the menu text, we have to press the Alt key to make the mnemonic underline appear. How to let the menu mnemonic underline appear always before we press Alt?

like image 615
user2671610 Avatar asked Dec 12 '13 10:12

user2671610


1 Answers

To make the mnemonic underlines visible all the time, just add the following to your css file:

.mnemonic-underline {
    -fx-stroke: -fx-text-base-color;
}
like image 180
Jens Piegsa Avatar answered Nov 08 '22 03:11

Jens Piegsa