mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-09 17:25:38 +02:00
Bug 156114: GDB options layout problem.
Applied patch from Vladimir Prus (vladimir@codesourcery.com).
This commit is contained in:
parent
4dda6937d9
commit
7827b8d4a1
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-09-11 Mikhail Khodjaiants
|
||||
Bug 156114: GDB options layout problem.
|
||||
Applied patch from Vladimir Prus (vladimir@codesourcery.com).
|
||||
* StandardGDBDebuggerPage.java
|
||||
|
||||
2006-04-16 Mikhail Khodjaiants
|
||||
Bug 113107: Make trace logs more readily available.
|
||||
* MIUIMessages.properties
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
*
|
||||
* Contributors:
|
||||
* QNX Software Systems - Initial API and implementation
|
||||
* Vadimir Prus (vladimir@codesourcery.com) - bug 156114: GDB options layout
|
||||
* problem
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.debug.mi.internal.ui;
|
||||
|
||||
|
@ -36,6 +38,7 @@ import org.eclipse.swt.layout.GridLayout;
|
|||
import org.eclipse.swt.widgets.Button;
|
||||
import org.eclipse.swt.widgets.Combo;
|
||||
import org.eclipse.swt.widgets.Composite;
|
||||
import org.eclipse.swt.widgets.Control;
|
||||
import org.eclipse.swt.widgets.FileDialog;
|
||||
import org.eclipse.swt.widgets.Label;
|
||||
import org.eclipse.swt.widgets.Shell;
|
||||
|
@ -177,6 +180,11 @@ public class StandardGDBDebuggerPage extends AbstractCDebuggerPage implements Ob
|
|||
// use default
|
||||
}
|
||||
fVerboseModeButton.setSelection( verboseMode );
|
||||
|
||||
// We've populated combos, which affects their preferred size, and so must relayout things.
|
||||
Control changed[] = { fCommandFactoryCombo, fProtocolCombo };
|
||||
((Composite) getControl()).layout( changed );
|
||||
|
||||
setInitializing( false );
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue