Missed a couple of spots with the name changes.

This commit is contained in:
jahorton 2019-07-05 10:14:29 +07:00
parent 304b94c7db
commit 3f35f5b7ba

View file

@ -7,9 +7,9 @@ namespace com.keyman.osk {
* each field.
*/
export interface BannerOptions {
persistentBanner?: boolean;
enablePredictions?: boolean;
enableCorrections?: boolean;
alwaysShow?: boolean;
mayPredict?: boolean;
mayCorrect?: boolean;
imagePath?: string;
}
@ -58,9 +58,9 @@ namespace com.keyman.osk {
private imagePath?: string = "";
public static readonly DEFAULT_OPTIONS: BannerOptions = {
persistentBanner: false,
enablePredictions: true,
enableCorrections: true,
alwaysShow: false,
mayPredict: true,
mayCorrect: true,
imagePath: ""
}