()
| 1413 | String[] mFontFaces; |
| 1414 | |
| 1415 | public void showOptionsDialog() |
| 1416 | { |
| 1417 | final CoolReader _this = this; |
| 1418 | mBackgroundThread.executeBackground(new Runnable() { |
| 1419 | public void run() { |
| 1420 | mFontFaces = mEngine.getFontFaceList(); |
| 1421 | mBackgroundThread.executeGUI(new Runnable() { |
| 1422 | public void run() { |
| 1423 | OptionsDialog dlg = new OptionsDialog(_this, mReaderView, mFontFaces); |
| 1424 | dlg.show(); |
| 1425 | } |
| 1426 | }); |
| 1427 | } |
| 1428 | }); |
| 1429 | } |
| 1430 | |
| 1431 | public void saveSetting( String name, String value ) { |
| 1432 | mReaderView.saveSetting(name, value); |
no test coverage detected