Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2008-10-07 17:15:01 +0000
committerChris Goldthorpe2008-10-07 17:15:01 +0000
commit65ff8966889f9c9ae48a6385333703278e0ccbbe (patch)
tree64998d427ef610b5d6d08193e3d231423ccb95f0 /org.eclipse.ui.intro
parenta4b822b4cb3c31b093e4bbdb7a23e39f0aeb7fcd (diff)
downloadeclipse.platform.ua-65ff8966889f9c9ae48a6385333703278e0ccbbe.tar.gz
eclipse.platform.ua-65ff8966889f9c9ae48a6385333703278e0ccbbe.tar.xz
eclipse.platform.ua-65ff8966889f9c9ae48a6385333703278e0ccbbe.zip
Bug 231064 – [Intro] Welcome Page - Accessibility - Problems with fonts, set default to be scaleable
Diffstat (limited to 'org.eclipse.ui.intro')
-rw-r--r--org.eclipse.ui.intro/preferences.ini2
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/FontSelection.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.ui.intro/preferences.ini b/org.eclipse.ui.intro/preferences.ini
index 9d81ffcb1..613030a09 100644
--- a/org.eclipse.ui.intro/preferences.ini
+++ b/org.eclipse.ui.intro/preferences.ini
@@ -4,4 +4,4 @@
# Defines the font style to be used for themes which support both absolute and relative fonts. May
# be "absolute" or "relative". Relative fonts support magnification.
-fontStyle=absolute \ No newline at end of file
+fontStyle=relative \ No newline at end of file
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/FontSelection.java b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/FontSelection.java
index 1333c2da3..839ad787a 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/FontSelection.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/internal/intro/impl/FontSelection.java
@@ -93,6 +93,6 @@ public class FontSelection {
}
}
// Use default for font style if not specified
- return FontSelection.FONT_ABSOLUTE;
+ return FontSelection.FONT_RELATIVE;
}
}

Back to the top