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

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

Introduction

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

Prototype

boolean isSplitMode();

Source Link

Usage

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

License:Apache License

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