Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2007-03-20 19:13:56 +0000
committerChris Goldthorpe2007-03-20 19:13:56 +0000
commita7c4e1d26f018c3777ce13c60872027a43e47c6c (patch)
tree1518bd8ab936e5350635861f6dc680b582d02f4d /org.eclipse.ui.cheatsheets
parent9e8b6dd991d92a6c09a401cbbad573c739eccd7a (diff)
downloadeclipse.platform.ua-a7c4e1d26f018c3777ce13c60872027a43e47c6c.tar.gz
eclipse.platform.ua-a7c4e1d26f018c3777ce13c60872027a43e47c6c.tar.xz
eclipse.platform.ua-a7c4e1d26f018c3777ce13c60872027a43e47c6c.zip
Bug 178338 - [CheatSheet] Browse... button not always enabled in CS Selection dialog on Linux:
Diffstat (limited to 'org.eclipse.ui.cheatsheets')
-rw-r--r--org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/dialogs/CheatSheetCategoryBasedSelectionDialog.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/dialogs/CheatSheetCategoryBasedSelectionDialog.java b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/dialogs/CheatSheetCategoryBasedSelectionDialog.java
index d6c5b126c..b12ce32ea 100644
--- a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/dialogs/CheatSheetCategoryBasedSelectionDialog.java
+++ b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/dialogs/CheatSheetCategoryBasedSelectionDialog.java
@@ -647,7 +647,7 @@ public class CheatSheetCategoryBasedSelectionDialog extends TrayDialog //extends
* Restores the state of the radio button and file name fields
*/
private void restoreFileSettings() {
- int radioSetting = 0;
+ int radioSetting = RADIO_REGISTERED;
try {
radioSetting = settings.getInt(STORE_RADIO_SETTING);
}

Back to the top