Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
index 3af079bf92..f590ed13ae 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/widgets/Shell.java
@@ -2923,7 +2923,7 @@ void setToolTipText (long /*int*/ tipWidget, String string) {
void setToolTipText (long /*int*/ rootWidget, long /*int*/ tipWidget, String string) {
byte [] buffer = null;
if (string != null && string.length () > 0) {
- char [] chars = fixMnemonic (string, false);
+ char [] chars = fixMnemonic (string, false, true);
buffer = Converter.wcsToMbcs (chars, true);
}
long /*int*/ oldTooltip = GTK.gtk_widget_get_tooltip_text (rootWidget);

Back to the top