瀏覽代碼

GTK Fixes


git-svn-id: http://svn.dmdirc.com/trunk@2662 00569f92-eb28-0410-84fd-f71c24880f
tags/0.5.5
Shane Mc Cormack 16 年之前
父節點
當前提交
123fb6059c

+ 2
- 1
src/com/dmdirc/installer/StepConfirm.java 查看文件

@@ -62,7 +62,8 @@ public final class StepConfirm extends Step implements StepListener {
62 62
 		infoLabel.setWrapStyleWord(true);
63 63
 		infoLabel.setLineWrap(true);
64 64
 		infoLabel.setHighlighter(null);
65
-		infoLabel.setBackground(getBackground());
65
+		infoLabel.setOpaque(false);
66
+//		infoLabel.setBackground(getBackground());
66 67
 		infoLabel.setBorder(BorderFactory.createEmptyBorder(0, 0, SMALL_BORDER, 0));
67 68
 			
68 69
 		add(infoLabel, BorderLayout.CENTER);

+ 2
- 1
src/com/dmdirc/installer/StepError.java 查看文件

@@ -56,7 +56,8 @@ public final class StepError extends Step {
56 56
 		infoLabel.setWrapStyleWord(true);
57 57
 		infoLabel.setLineWrap(true);
58 58
 		infoLabel.setHighlighter(null);
59
-		infoLabel.setBackground(getBackground());
59
+		infoLabel.setOpaque(false);
60
+//		infoLabel.setBackground(getBackground());
60 61
 		infoLabel.setBorder(BorderFactory.createEmptyBorder(0, 0, SMALL_BORDER, 0));
61 62
 			
62 63
 		add(infoLabel, BorderLayout.CENTER);

+ 2
- 1
src/com/dmdirc/installer/StepInstall.java 查看文件

@@ -62,7 +62,8 @@ public final class StepInstall extends Step implements StepListener {
62 62
 		infoLabel.setWrapStyleWord(true);
63 63
 		infoLabel.setLineWrap(true);
64 64
 		infoLabel.setHighlighter(null);
65
-		infoLabel.setBackground(getBackground());
65
+		infoLabel.setOpaque(false);
66
+//		infoLabel.setBackground(getBackground());
66 67
 		infoLabel.setBorder(BorderFactory.createEmptyBorder(0, 0, SMALL_BORDER, 0));
67 68
 			
68 69
 		add(infoLabel, BorderLayout.CENTER);

+ 2
- 1
src/com/dmdirc/installer/StepSettings.java 查看文件

@@ -73,7 +73,8 @@ public final class StepSettings extends Step {
73 73
 		infoLabel.setWrapStyleWord(true);
74 74
 		infoLabel.setLineWrap(true);
75 75
 		infoLabel.setHighlighter(null);
76
-		infoLabel.setBackground(getBackground());
76
+		infoLabel.setOpaque(false);
77
+//		infoLabel.setBackground(getBackground());
77 78
 		infoLabel.setBorder(BorderFactory.createEmptyBorder(0, 0, SMALL_BORDER, 0));
78 79
 		
79 80
 		shortcutMenu.setSelected(true);

+ 2
- 1
src/com/dmdirc/installer/StepWelcome.java 查看文件

@@ -59,7 +59,8 @@ public final class StepWelcome extends Step {
59 59
 		infoLabel.setWrapStyleWord(true);
60 60
 		infoLabel.setLineWrap(true);
61 61
 		infoLabel.setHighlighter(null);
62
-		infoLabel.setBackground(getBackground());
62
+		infoLabel.setOpaque(false);
63
+//		infoLabel.setBackground(getBackground());
63 64
 		infoLabel.setBorder(BorderFactory.createEmptyBorder(0, 0, SMALL_BORDER, 0));
64 65
 			
65 66
 		add(infoLabel, BorderLayout.CENTER);

Loading…
取消
儲存