Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 75937 | Differences between
and this patch

Collapse All | Expand All

(-)toolkits/java/metatheme/MetaThemeScrollBarUI.java (-1 / +1 lines)
Lines 81-87 Link Here
81
		int state = MT_NORMAL;
81
		int state = MT_NORMAL;
82
		int orientation = (scrollbar.getOrientation() == JScrollBar.VERTICAL)? MT_VERTICAL : MT_HORIZONTAL;
82
		int orientation = (scrollbar.getOrientation() == JScrollBar.VERTICAL)? MT_VERTICAL : MT_HORIZONTAL;
83
83
84
		if (isThumbRollover()) state |= MT_HOVER;
84
		//if (isThumbRollover()) state |= MT_HOVER;
85
		if (isDragging()) state |= MT_ACTIVE;
85
		if (isDragging()) state |= MT_ACTIVE;
86
86
87
		engine.drawWidget(g, MT_SCROLLBAR_HANDLE, state, r.x, r.y, r.width, r.height, 0, orientation);
87
		engine.drawWidget(g, MT_SCROLLBAR_HANDLE, state, r.x, r.y, r.width, r.height, 0, orientation);
(-)toolkits/java/metatheme/MetaThemeTabbedPaneUI.java (+2 lines)
Lines 186-191 Link Here
186
		return 0;
186
		return 0;
187
	}
187
	}
188
188
189
	/*
189
	protected JButton createScrollButton(int direction) {
190
	protected JButton createScrollButton(int direction) {
190
		int type;
191
		int type;
191
192
Lines 199-204 Link Here
199
200
200
		return new MetaThemeScrollButton(type, this);
201
		return new MetaThemeScrollButton(type, this);
201
	}
202
	}
203
	*/
202
204
203
	public int getTabAreaHeight() {
205
	public int getTabAreaHeight() {
204
		return calculateTabAreaHeight(tabPane.getTabPlacement(), runCount, maxTabHeight);
206
		return calculateTabAreaHeight(tabPane.getTabPlacement(), runCount, maxTabHeight);

Return to bug 75937