[obsidian] vault backup: 2023-08-20 11:38:31[

This commit is contained in:
Tomoya Matsuura(MacBookPro) 2023-08-20 11:38:31 +09:00
parent 3fa3fe1cd1
commit 905afb6675
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,7 @@
{
"commitMessage": "[obsidian] vault backup: {{date}}",
"commitDateFormat": "YYYY-MM-DD HH:mm:ss",
"autoSaveInterval": 10,
"autoSaveInterval": 60,
"autoPushInterval": 0,
"autoPullInterval": 0,
"autoPullOnBoot": true,

View File

@ -43,12 +43,16 @@ struct UI<'a>{
state: &'a mut State
}
impl<'a> egui::Widget for UI<'a>{
fn ui
fn ui(self, ui: &mut egui::Ui) -> egui::Response {
///...
}
}
```
eguiはimmiditate モードだから毎フレームこのUI型を生成しているegui標準のSliderとかもこの方式
オーディオプロセッサーもこのやり方にできるか?
## 開発メモ