From ed2a4969cf646b434e8cd8ca140992257430446f Mon Sep 17 00:00:00 2001 From: David McKnight Date: Thu, 6 Jan 2011 21:44:48 +0000 Subject: [PATCH] [333702] Remote Systems details view does not maintain column width settings across sessions --- .../eclipse/rse/internal/ui/view/SystemTableViewPart.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemTableViewPart.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemTableViewPart.java index ee454a2fb1a..0f15fa1c1bf 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemTableViewPart.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/view/SystemTableViewPart.java @@ -1,5 +1,5 @@ /******************************************************************************** - * Copyright (c) 2002, 2009 IBM Corporation and others. All rights reserved. + * Copyright (c) 2002, 2011 IBM Corporation and others. All rights reserved. * This program and the accompanying materials are made available under the terms * of the Eclipse Public License v1.0 which accompanies this distribution, and is * available at http://www.eclipse.org/legal/epl-v10.html @@ -41,6 +41,7 @@ * David Dykstal (IBM) - [233678] title string is constructed by concatenation, should be substituted * Kevin Doyle (IBM) - [242431] Register a new unique context menu id, so contributions can be made to all our views * David McKnight (IBM) - [260346] RSE view for jobs does not remember resized columns + * David McKnight (IBM) - [333702] Remote Systems details view does not maintain column width settings across sessions *******************************************************/ package org.eclipse.rse.internal.ui.view; @@ -723,8 +724,8 @@ public class SystemTableViewPart extends ViewPart } cachedColumnWidths.put(key, widths); - _viewer.setCachedColumnWidths(cachedColumnWidths); - } + } + _viewer.setCachedColumnWidths(cachedColumnWidths); } }