Skip to content

Commit

Permalink
Fix column width not persisting
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyD97 committed Aug 7, 2019
1 parent ff82f0c commit 2575177
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public LogTableColumn deserialize(JsonElement jsonElement, Type type, JsonDeseri
column.order = object.get("order").getAsInt();
column.defaultVisibleName = object.get("defaultVisibleName").getAsString();
column.visibleName = object.get("visibleName").getAsString();
column.width = object.get("preferredWidth").getAsInt();
column.setWidth(object.get("preferredWidth").getAsInt());
column.type = object.get("type").getAsString();
column.readOnly = object.get("readonly").getAsBoolean();
column.visible = object.get("visible").getAsBoolean();
Expand Down

0 comments on commit 2575177

Please sign in to comment.