Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ideaVersion = IC-14.1.4
javaVersion = 1.6
kotlinVersion = 1.0.5
version = 1.5.4
version = 1.5.5
2 changes: 1 addition & 1 deletion src/main/java/net/vektah/codeglance/config/ConfigForm.java
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public boolean isRightAligned() {
}

public void setRightAligned(boolean isRightAligned) {
renderStyle.setSelectedIndex(isRightAligned ? 0 : 1);
alignment.setSelectedIndex(isRightAligned ? 0 : 1);
}

public int getWidth() {
Expand Down
1 change: 1 addition & 0 deletions src/main/java/net/vektah/codeglance/render/Folds.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
package net.vektah.codeglance.render

import com.intellij.openapi.editor.FoldRegion
import java.util.*

// Is a copy of Array<FoldRegion> that only contains folded folds and can be passed safely to another thread
class Folds{
Expand Down