Example usage for com.intellij.openapi.wm ToolWindow isAutoHide

List of usage examples for com.intellij.openapi.wm ToolWindow isAutoHide

Introduction

In this page you can find the example usage for com.intellij.openapi.wm ToolWindow isAutoHide.

Prototype

boolean isAutoHide();

Source Link

Usage

From source file:com.intellij.ide.actions.TogglePinnedModeAction.java

License:Apache License

@Override
protected boolean isSelected(ToolWindow window) {
    return !window.isAutoHide();
}