@@ -47,11 +47,11 @@ public EditOptionDialog(Skin skin, Dialog parent, DialogOption e, int pos) {
47
47
48
48
text = InputPanelFactory .createInputPanel (skin , "Text" , "The sentence of the dialog to say by the player" ,
49
49
Type .SMALL_TEXT , true );
50
- voice = InputPanelFactory .createInputPanel (skin , "Voice" , "The voice filename" ,
51
- Type .VOICE , true );
50
+ voice = InputPanelFactory .createInputPanel (skin , "Voice" , "The voice filename for the player lines " ,
51
+ Type .VOICE , false );
52
52
responseText = InputPanelFactory .createInputPanel (skin , "Response Text" , "The response said by the character" ,
53
53
Type .TEXT , false );
54
- responseVoice = InputPanelFactory .createInputPanel (skin , "Response Voice" , "The voice filename for the response" ,
54
+ responseVoice = InputPanelFactory .createInputPanel (skin , "Response Voice" , "The voice filename for the response lines " ,
55
55
Type .VOICE , false );
56
56
verb = InputPanelFactory .createInputPanel (skin , "Verb" , "The verb to execute when choosing this option" );
57
57
next = InputPanelFactory .createInputPanel (skin , "Next Dialog" ,
@@ -66,7 +66,7 @@ public EditOptionDialog(Skin skin, Dialog parent, DialogOption e, int pos) {
66
66
text .getCell (text .getField ()).fillX ();
67
67
responseText .getCell (responseText .getField ()).fillX ();
68
68
69
- init (parent , e , new InputPanel [] { text , voice , responseText , responseVoice , verb , next , visible , once });
69
+ init (parent , e , new InputPanel [] { text , responseText , voice , responseVoice , verb , next , visible , once });
70
70
}
71
71
72
72
@ Override
0 commit comments