Skip to content

Commit 7497a24

Browse files
committed
Fix formatting
1 parent af6f2a1 commit 7497a24

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

flutter-idea/src/io/flutter/propertyeditor/PropertyEditorViewFactory.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ public void toolWindowShown(@NotNull ToolWindow activatedToolWindow) {
8989

9090
@Override
9191
public void stateChanged(@NotNull ToolWindowManager toolWindowManager, @NotNull ToolWindowManagerEventType changeType) {
92-
if (changeType.equals(ToolWindowManagerEventType.SetToolWindowAutoHide) || changeType.equals(ToolWindowManagerEventType.SetToolWindowType)) {
92+
if (changeType.equals(ToolWindowManagerEventType.SetToolWindowAutoHide) ||
93+
changeType.equals(ToolWindowManagerEventType.SetToolWindowType)) {
9394
checkDockedUnpinnedAndCreateContent(project, toolWindow);
9495
}
9596
}
@@ -102,9 +103,9 @@ private void checkDockedUnpinnedAndCreateContent(@NotNull Project project, ToolW
102103
if (!isDockedUnpinned.equals(PREVIOUS_DOCKED_UNPINNED)) {
103104
PREVIOUS_DOCKED_UNPINNED = isDockedUnpinned;
104105
super.createToolWindowContent(project, toolWindow, isDockedUnpinned
105-
? "This tool window is in \"Docked Unpinned\" mode, which means it will " +
106-
"disappear during normal use of the property editor. Select Options (three dots) >"
107-
+ " View Mode > Docked Pinned instead."
106+
? "This tool window is in \"Docked Unpinned\" mode, which means it will disappear "
107+
+ "during normal use of the property editor. Select Options (three dots) > View "
108+
+ "Mode > Docked Pinned instead."
108109
: null);
109110
}
110111
}

0 commit comments

Comments
 (0)