Merged toolbars should not be floatable.

This commit is contained in:
rj.keller%beonex.com 2005-05-28 13:42:14 +00:00
Родитель 8772f7f480
Коммит cba2cdb401
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -138,6 +138,7 @@ public class Util {
static public JToolBar MergeToolBars(JToolBar aBar1, JToolBar aBar2) {
JToolBar res = new JToolBar();
res.setFloatable(false);
Component barArray1[] = aBar1.getComponents();
Component barArray2[] = aBar2.getComponents();