1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 22:35:43 +02:00

Fixing bug 138313. Now make the message field invisible so it is removed from the tab order when there is no text.

This commit is contained in:
David Dykstal 2006-04-28 21:15:30 +00:00
parent ffe496dd39
commit d0bb32d149

View file

@ -569,6 +569,7 @@ public class SystemMessageLine
widget.setForeground(color); widget.setForeground(color);
widget.setText(text); widget.setText(text);
widget.setData(text); widget.setData(text);
widget.setVisible(text.length() > 0);
adjustText(); adjustText();
} }