| 93 |
public var playerQuality:int = 2; |
public var playerQuality:int = 2; |
| 94 |
public var isFollowInfoViewHeight:Boolean = false; |
public var isFollowInfoViewHeight:Boolean = false; |
| 95 |
public var isNotPlayNicowari:Boolean = false; |
public var isNotPlayNicowari:Boolean = false; |
| 96 |
|
public var isOpenFileDialogWhenOpenPlayer:Boolean = false; |
| 97 |
|
|
| 98 |
public static const RESIZE_TYPE_NICO:int = 1; |
public static const RESIZE_TYPE_NICO:int = 1; |
| 99 |
public static const RESIZE_TYPE_VIDEO:int = 2; |
public static const RESIZE_TYPE_VIDEO:int = 2; |
| 1166 |
isNotPlayNicowari = ConfUtil.parseBoolean(confValue); |
isNotPlayNicowari = ConfUtil.parseBoolean(confValue); |
| 1167 |
} |
} |
| 1168 |
|
|
| 1169 |
|
confValue = ConfigManager.getInstance().getItem("isOpenFileDialogWhenOpenPlayer"); |
| 1170 |
|
if (confValue != null) |
| 1171 |
|
{ |
| 1172 |
|
this.isOpenFileDialogWhenOpenPlayer = ConfUtil.parseBoolean(confValue); |
| 1173 |
|
} |
| 1174 |
|
|
| 1175 |
}catch(error:Error){ |
}catch(error:Error){ |
| 1176 |
trace(error.getStackTrace()); |
trace(error.getStackTrace()); |
| 1177 |
Alert.show(Message.M_CONF_FILE_IS_BROKEN, Message.M_ERROR); |
Alert.show(Message.M_CONF_FILE_IS_BROKEN, Message.M_ERROR); |
| 1320 |
DataGridColumnWidthUtil.save(dataGrid_oldComment, new Vector.<String>("mail_column")); |
DataGridColumnWidthUtil.save(dataGrid_oldComment, new Vector.<String>("mail_column")); |
| 1321 |
} |
} |
| 1322 |
|
|
| 1323 |
|
ConfigManager.getInstance().removeItem("isOpenFileDialogWhenOpenPlayer"); |
| 1324 |
|
ConfigManager.getInstance().setItem("isOpenFileDialogWhenOpenPlayer", isOpenFileDialogWhenOpenPlayer); |
| 1325 |
|
|
| 1326 |
ConfigManager.getInstance().save(); |
ConfigManager.getInstance().save(); |
| 1327 |
|
|