Example usage for com.jgoodies.looks Options setUseNarrowButtons

List of usage examples for com.jgoodies.looks Options setUseNarrowButtons

Introduction

In this page you can find the example usage for com.jgoodies.looks Options setUseNarrowButtons.

Prototype

public static void setUseNarrowButtons(boolean b) 

Source Link

Document

Globally sets the use narrow or standard button margins.

In previous versions of the JGoodies Looks this setting was supported also for individual buttons - primarily to offer visual backward compatibility with Sun L&Fs.

Usage

From source file:org.springframework.richclient.application.config.JGoodiesLooksConfigurer.java

License:Apache License

/**
 * @param enabled set to <code>true</code> if narrow buttons should be used.
 * @see com.jgoodies.looks.Options#setUseNarrowButtons(boolean)
 *//* ww  w . j  a v a 2  s.c  o m*/
public void setUseNarrowButtons(boolean enabled) {
    Options.setUseNarrowButtons(enabled);
}