10/01/18 00:55:18 KxyZBOBm0
>>595
v1.22.0から、Playerを開く度に、InfoViewの「リピート再生」と「コメントを表示」のチェックが、勝手に付く様になっている。
チェックを外して、一旦Playerを閉じた後、config.xmlを見ると、それらしいパラメータはfalseになっているが、再度開くとまた付いている。
% pwd
/Users/***/Library/Preferences/NNDD.***.1/Local Store
(1) 初期状態
% egrep "isRepeat|isShowComment" config.xml*
config.xml: <isRepeat>true</isRepeat>
config.xml: <isShowComment>true</isShowComment>
config.xml.back: <isRepeat>true</isRepeat>
config.xml.back: <isShowComment>true</isShowComment>
(2) 「リピート再生」と「コメントを表示」のチェックを外して、Playerを閉じたした後
% egrep "isRepeat|isShowComment" config.xml*
config.xml: <isRepeat>false</isRepeat>
config.xml: <isShowComment>false</isShowComment>
config.xml.back: <isRepeat>true</isRepeat>
config.xml.back: <isShowComment>true</isShowComment>
(3) (2)の状態から、Playerを起動して、すぐ閉じた後
% egrep "isRepeat|isShowComment" config.xml*
config.xml: <isRepeat>true</isRepeat>
config.xml: <isShowComment>true</isShowComment>
config.xml.back: <isRepeat>false</isRepeat>
config.xml.back: <isShowComment>false</isShowComment>