Change to send timeline result

This commit is contained in:
kPherox
2019-04-24 05:30:16 +09:00
parent 088599f88c
commit e0fc3df242
4 changed files with 20 additions and 17 deletions

View File

@@ -42,13 +42,15 @@ export default class AddColumn extends Vue {
public addTL() {
this.showInput = false
this.pubTL.push(this.instance)
let instance = this.instance
this.pubTL.push(instance)
this.timeline()
}
public timeline() {
this.pubTL.forEach(function (value) {
ipcRenderer.send('no-auth-streaming', value);
ipcRenderer.send('no-auth-timeline', value);
});
}
}

View File

@@ -43,7 +43,7 @@ button {
--btn-bg-color: var(--bg-color) !important;
}
font-size: 1em;
font-size: var(--font-size);
margin: 0 0.5em;
padding: 0.8em 2em;