Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 300986
Collapse All | Expand All

(-)src/org/eclipse/rap/demo/controls/TreeTab.java (+1 lines)
Lines 58-63 Link Here
58
    createShowColumnControl();
58
    createShowColumnControl();
59
    createFgColorButton();
59
    createFgColorButton();
60
    createBgColorButton();
60
    createBgColorButton();
61
    createBgImageButton();
61
    createFontChooser();
62
    createFontChooser();
62
    final Button itemFgButton
63
    final Button itemFgButton
63
      = createPropertyButton( "Custom foreground on 1st item", SWT.CHECK );
64
      = createPropertyButton( "Custom foreground on 1st item", SWT.CHECK );
(-)js/org/eclipse/swt/widgets/Tree.js (+8 lines)
Lines 122-127 Link Here
122
      this._tree.setBackgroundColor( color );
122
      this._tree.setBackgroundColor( color );
123
    },
123
    },
124
124
125
    setBackgroundImage : function( image ) {
126
      this._tree.setBackgroundImage( image );
127
    },
128
129
    resetBackgroundImage : function() {
130
      this._tree.resetBackgroundImage();
131
    },
132
125
    resetBackgroundColor : function() {
133
    resetBackgroundColor : function() {
126
      this._tree.resetBackgroundColor();
134
      this._tree.resetBackgroundColor();
127
    },
135
    },

Return to bug 300986