タイニー番組ナビゲータ本体
Révision | 7cf855fc62ecf607e4493f298d9d9ea642160750 (tree) |
---|---|
l'heure | 2013-12-05 23:43:09 |
Auteur | peeweedee <peeweedee@user...> |
Commiter | peeweedee |
バグ修正
・ピックアップ操作で鯛ナビが落ちる問題の修正
@@ -11,6 +11,12 @@ | ||
11 | 11 | ★☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆★ |
12 | 12 | |
13 | 13 | 3.22.7β+1.5.12(2013-12-01) |
14 | +■変更点 | |
15 | + ・(その他) TaiNaviが鯛ナビ本体のUncaughtExceptionでの終了を検知したとき、messageだけでなくstack traceも出力するようにした(できた) | |
16 | +■バグ修正 | |
17 | + ・(リスト形式) ピックアップ表示時に最終行の番組をホイールクリックで削除するとOOB例外で鯛ナビが終了してしまう問題を修正(>>614.) | |
18 | + | |
19 | +3.22.7β+1.5.12(2013-12-01) | |
14 | 20 | ■バグ修正 |
15 | 21 | ・(Web番組表[スカパー]) 番組表情報が正しく構成されない問題を修正(>>601.) |
16 | 22 |
@@ -2281,7 +2281,9 @@ public abstract class AbsListedView extends JPanel implements TickTimerListener | ||
2281 | 2281 | */ |
2282 | 2282 | public void refocus() { |
2283 | 2283 | if (vrowInFocus >= 0) { |
2284 | - jTable_listed.getSelectionModel().addSelectionInterval(vrowInFocus, vrowInFocus); | |
2284 | + if (vrowInFocus < jTable_listed.getRowCount()) { | |
2285 | + jTable_listed.getSelectionModel().addSelectionInterval(vrowInFocus, vrowInFocus); | |
2286 | + } | |
2285 | 2287 | vrowInFocus = -1; |
2286 | 2288 | } |
2287 | 2289 | } |
@@ -5,7 +5,7 @@ import java.util.regex.Pattern; | ||
5 | 5 | |
6 | 6 | |
7 | 7 | public class VersionInfo { |
8 | - private static final String Version = "タイニー番組ナビゲータ 3.22.7β"; | |
8 | + private static final String Version = "タイニー番組ナビゲータ 3.22.8β"; | |
9 | 9 | |
10 | 10 | private static final String OSname = System.getProperty("os.name"); |
11 | 11 | private static final String OSvers = System.getProperty("os.version"); |