TextPanel textPanel = new TextPanel();
textPanel.setFontSizeList(fontSizeList);
textPanel.setFontSize(properties.getFontSize());
SchemaCanvasDialog dialog = new SchemaCanvasDialog(context.getCanvasView(), true);
dialog.addContent(textPanel);
dialog.setTitle("テキスト入力");
dialog.setVisible(true);
int result = dialog.getResult();
inputText = textPanel.getText();
properties.setFontSize(textPanel.getFontSize());
if (result == JOptionPane.OK_OPTION && inputText != null && !inputText.equals("")) {
start = p;