Lior Vernia has uploaded a new change for review.

Change subject: webadmin: Remove redundant header splitters in fixed columns
......................................................................

webadmin: Remove redundant header splitters in fixed columns

This was previously fixed in resizable columns, but not in fixed ones.

Change-Id: I0090109d3cc2c4a18418fef49eaf09b8a5c52915
Bug-Url: https://bugzilla.redhat.com/1139551
Signed-off-by: Lior Vernia <[email protected]>
---
M 
frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/resize/ColumnResizeCellTable.java
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/00/32700/1

diff --git 
a/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/resize/ColumnResizeCellTable.java
 
b/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/resize/ColumnResizeCellTable.java
index 37216d9..182a4fb 100644
--- 
a/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/resize/ColumnResizeCellTable.java
+++ 
b/frontend/webadmin/modules/gwt-common/src/main/java/org/ovirt/engine/ui/common/widget/table/resize/ColumnResizeCellTable.java
@@ -193,10 +193,10 @@
         return new Header<SafeHtml>(new SafeHtmlCellWithTooltip()) {
             @Override
             public SafeHtml getValue() {
-                if (text != null) {
+                if (text != null && applyResizableHeaderStyle) {
                     return templates.nonResizeableColumnHeader(text);
                 }
-                return null;
+                return text;
             }
         };
     }


-- 
To view, visit http://gerrit.ovirt.org/32700
To unsubscribe, visit http://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0090109d3cc2c4a18418fef49eaf09b8a5c52915
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Lior Vernia <[email protected]>
_______________________________________________
Engine-patches mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to