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 = new TreeColumn(langTree, SWT.NONE);
|
||||||
langCol.setText(UIMessages.getString("AbstractLangsListTab.1")); //$NON-NLS-1$
|
langCol.setText(UIMessages.getString("AbstractLangsListTab.1")); //$NON-NLS-1$
|
||||||
|
langCol.setWidth(200);
|
||||||
langCol.setResizable(false);
|
langCol.setResizable(false);
|
||||||
return langTree;
|
return langTree;
|
||||||
}
|
}
|
||||||
|
@ -270,7 +271,7 @@ public abstract class AbstractLangsListTab extends AbstractCPropertyTab {
|
||||||
* Refreshes languages list and calls table refresh.
|
* Refreshes languages list and calls table refresh.
|
||||||
*/
|
*/
|
||||||
public void updateData(ICResourceDescription cfg) {
|
public void updateData(ICResourceDescription cfg) {
|
||||||
if (cfg == null) return;
|
if (cfg == null || !canBeVisible()) return;
|
||||||
updateExport();
|
updateExport();
|
||||||
langTree.removeAll();
|
langTree.removeAll();
|
||||||
TreeItem firstItem = null;
|
TreeItem firstItem = null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue