Fixed visual bug when adding an edge and deleting an edge.
This commit is contained in:
parent
ff6278ff19
commit
eca164a190
@ -382,7 +382,9 @@ public class GrafoController implements Initializable {
|
||||
}
|
||||
valorNodo1.setText("");
|
||||
valorNodo2.setText("");
|
||||
valorPeso.setText("");
|
||||
if (grafoTipos.getTipo() == Grafo.Tipos.PESO) {
|
||||
valorPeso.setText("");
|
||||
}
|
||||
}
|
||||
else {
|
||||
Main.mostrarError(resourceBundle.getString("grafoNoNumero"), resourceBundle);
|
||||
@ -431,7 +433,9 @@ public class GrafoController implements Initializable {
|
||||
}
|
||||
valorNodo1.setText("");
|
||||
valorNodo2.setText("");
|
||||
valorPeso.setText("");
|
||||
if (grafoTipos.getTipo() == Grafo.Tipos.PESO) {
|
||||
valorPeso.setText("");
|
||||
}
|
||||
}
|
||||
else {
|
||||
Main.mostrarError(resourceBundle.getString("grafoNoEdge"), resourceBundle);
|
||||
|
@ -22,7 +22,7 @@ import java.util.logging.Level;
|
||||
* Se necesita java 8 con javafx instalado.
|
||||
*
|
||||
* @author Chris Cromer
|
||||
* @version 1.0.0
|
||||
* @version 1.0.1
|
||||
*/
|
||||
public class Main extends Application {
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user