Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resizing yellow box on Eclipse and keeping it sized

I've been trying to resize the yellow box that appears when I press Ctrl+Shift+I over a variable or so, but every time I resize it, it comes to its actual size again. I know it's possible to resize and keep it this size, but can't remember how. Can you guys remind me?

Thanks.

like image 542
Gondim Avatar asked Dec 14 '10 15:12

Gondim


People also ask

How do I resize a JFrame in eclipse?

in this example, the four buttons will resize with the window. JFrame frame = new JFrame(); Container cp = frame. getContentPane(); cp. setLayout(new GridLayout(2, 2)); cp.


1 Answers

Under your workspace, open

.metadata/.plugins/org.eclipse.debug.ui/dialog_settings.xml

under workbench section, modify these keys,

<item value="300" key="org.eclipse.debug.ui.InspectPopupDialogDIALOG_WIDTH"/>
<item value="300" key="org.eclipse.debug.ui.InspectPopupDialogDIALOG_HEIGHT"/>
<item value="4"   key="org.eclipse.debug.ui.InspectPopupDialogDIALOG_Y_ORIGIN"/>
<item value="192" key="org.eclipse.debug.ui.InspectPopupDialogDIALOG_X_ORIGIN"/>
like image 119
zinan.yumak Avatar answered Sep 27 '22 16:09

zinan.yumak