mirror of
https://github.com/antos-rde/antosdk-apps.git
synced 2025-07-27 11:19:53 +02:00
fix(CodePad,vfx,Antedit): use new Task API and setting API
All checks were successful
gitea-sync/antosdk-apps/pipeline/head This commit looks good
All checks were successful
gitea-sync/antosdk-apps/pipeline/head This commit looks good
This commit is contained in:
@ -561,7 +561,7 @@ namespace OS {
|
||||
this.loadExtensionMetaData();
|
||||
this.toggleSideBar();
|
||||
this.toggleSplitMode();
|
||||
this.applyAllSetting();
|
||||
//this.applyAllSetting();
|
||||
}
|
||||
|
||||
/**
|
||||
@ -718,7 +718,7 @@ namespace OS {
|
||||
|
||||
showOutput(toggle: boolean = false): void {
|
||||
if (toggle)
|
||||
this.showBottomBar(true);
|
||||
this.setting.showBottomBar = true;
|
||||
this.bottombar.selectedIndex = 0;
|
||||
}
|
||||
|
||||
@ -749,7 +749,6 @@ namespace OS {
|
||||
* @memberof Antedit
|
||||
*/
|
||||
public showBottomBar(v: boolean): void {
|
||||
this.setting.showBottomBar = v;
|
||||
if (v) {
|
||||
$(this.bottombar).show();
|
||||
}
|
||||
@ -765,7 +764,7 @@ namespace OS {
|
||||
* @memberof Antedit
|
||||
*/
|
||||
private toggleBottomBar(): void {
|
||||
this.showBottomBar(!this.setting.showBottomBar);
|
||||
this.setting.showBottomBar = !this.setting.showBottomBar;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user