improve some defaults

This commit is contained in:
Ell 2022-03-21 00:10:06 +01:00
parent 1002198580
commit c1c4d00ea8

View file

@ -3,7 +3,7 @@ import { BrowserView, remote } from 'electron';
const viewName: string = "keep"; const viewName: string = "keep";
const defaultSettings: KeepSettings = { const defaultSettings: KeepSettings = {
minimumWidth: 356, minimumWidth: 358,
padding: 5, padding: 5,
css: `/* hide the menu bar and the "Keep" logo and text */ css: `/* hide the menu bar and the "Keep" logo and text */
.PvRhvb-qAWA2, .gb_qc { .PvRhvb-qAWA2, .gb_qc {
@ -197,7 +197,7 @@ class KeepSettingTab extends PluginSettingTab {
}); });
}); });
new Setting(this.containerEl) new Setting(this.containerEl)
.setName("Padding") .setName("View Padding")
.setDesc("The padding that should be left around the inside of the Google Keep view, in pixels.") .setDesc("The padding that should be left around the inside of the Google Keep view, in pixels.")
.addText(t => { .addText(t => {
t.inputEl.type = "number"; t.inputEl.type = "number";