mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Bug #179944 - fixed
This commit is contained in:
parent
a39e2b6a75
commit
b72cecdf30
1 changed files with 2 additions and 1 deletions
|
@ -214,6 +214,7 @@ public abstract class AbstractLangsListTab extends AbstractCPropertyTab {
|
|||
|
||||
langCol = new TreeColumn(langTree, SWT.NONE);
|
||||
langCol.setText(UIMessages.getString("AbstractLangsListTab.1")); //$NON-NLS-1$
|
||||
langCol.setWidth(200);
|
||||
langCol.setResizable(false);
|
||||
return langTree;
|
||||
}
|
||||
|
@ -270,7 +271,7 @@ public abstract class AbstractLangsListTab extends AbstractCPropertyTab {
|
|||
* Refreshes languages list and calls table refresh.
|
||||
*/
|
||||
public void updateData(ICResourceDescription cfg) {
|
||||
if (cfg == null) return;
|
||||
if (cfg == null || !canBeVisible()) return;
|
||||
updateExport();
|
||||
langTree.removeAll();
|
||||
TreeItem firstItem = null;
|
||||
|
|
Loading…
Add table
Reference in a new issue