Add known issue disclaimer

This commit is contained in:
Clément Fournier
2018-04-26 15:02:55 +02:00
parent 7a4a5496aa
commit 7d7c2dc94a
2 changed files with 3 additions and 1 deletions

View File

@ -78,7 +78,7 @@ jre_specific_vm_options() {
# java_ver is eg "18" for java 1.8, "90" for java 9.0
java_ver=$(java -version 2>&1 | sed -n ';s/.* version "\(.*\)\.\(.*\)\..*"/\1\2/p;')
options=""
if [ $java_ver -ge 90 ] && [ "${APPNAME}" = "designer" ]
then # open internal module of javafx to reflection
options="--add-opens javafx.controls/javafx.scene.control.skin=ALL-UNNAMED"

View File

@ -237,6 +237,8 @@ public class MainDesignerController implements Initializable, SettingsOwner {
*/
public void onNodeItemSelected(Node selectedValue) {
nodeInfoPanelController.displayInfo(selectedValue);
// The following line causes problems, since it wipes out the name occurrence highlighting,
// but it's already fixed in a PR to come soon
sourceEditorController.clearNodeHighlight();
sourceEditorController.highlightNodePrimary(selectedValue);
sourceEditorController.focusNodeInTreeView(selectedValue);