Skip to content

Commit 956bd17

Browse files
committed
small fixes.
1 parent 7d3cca4 commit 956bd17

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/main/java/com/ss/editor/JFXApplication.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,14 +118,15 @@ public static void main(final String[] args) throws IOException {
118118
System.setProperty(LWJGLBufferAllocator.PROPERTY_CONCURRENT_BUFFER_ALLOCATOR, "true");
119119

120120
// some settings for the render of JavaFX
121+
System.setProperty("prism.printrendergraph", "false");
122+
121123
//System.setProperty("prism.cacheshapes", "true");
122124
//System.setProperty("prism.scrollcacheopt", "true");
123125
//System.setProperty("prism.allowhidpi", "true");
124126

125127
//System.setProperty("prism.order", "sw");
126128
//System.setProperty("prism.showdirty", "true");
127129
//System.setProperty("prism.showoverdraw", "true");
128-
//System.setProperty("prism.printrendergraph", "true");
129130
//System.setProperty("prism.debug", "true");
130131
//System.setProperty("prism.verbose", "true");
131132

src/main/java/com/ss/editor/plugin/api/messages/MessagesPluginFactory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ public Enumeration<String> getKeys() {
3737
};
3838

3939
/**
40-
* Create a resource bundle of messages for the plugin. You need to put a <B>messages.properties</B>
41-
* file to your resources folder by path <B>/resources/messages/<B> .
40+
* Create a resource bundle of messages for the plugin. You need to put a 'messages.properties'
41+
* file to your resources folder by path '/resources/messages/'.
4242
*
4343
* @param pluginClass the plugin class.
4444
* @return the resource bundle.

src/main/java/com/ss/editor/ui/util/UIUtils.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,7 @@ public static <T> Array<TreeItem<T>> getAllItems(@NotNull final TreeView<T> tree
425425
*
426426
* @param <T> the type parameter
427427
* @param root the tree item.
428+
* @return the list with all items.
428429
*/
429430
@FXThread
430431
public static <T> Array<TreeItem<T>> getAllItems(@NotNull final TreeItem<T> root) {

src/main/resources/app-config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<set name="Dev.debug" value="true"/>
66
<set name="Dev.cameraDebug" value="false"/>
7-
<set name="Dev.transformsDebug" value="true"/>
7+
<set name="Dev.transformsDebug" value="false"/>
88
<set name="Dev.jfxKeyInput" value="false"/>
99
<set name="Dev.debugJFX" value="false"/>
1010
</list>

0 commit comments

Comments
 (0)