moved editing page to popup
All checks were successful
Build CI / AMD64 Build (push) Successful in 1m54s
All checks were successful
Build CI / AMD64 Build (push) Successful in 1m54s
This commit is contained in:
@@ -13,7 +13,11 @@ class LauncherButton extends StatelessWidget {
|
||||
Widget build(BuildContext context) {
|
||||
// print("EDITOR ID: $eid");
|
||||
GlobalModel gm = Provider.of<GlobalModel>(context, listen: false);
|
||||
final Editor edt = gm.nthEdt(gm.getEdtPosFromID(eid));
|
||||
final int enumb = gm.getEdtPosFromID(eid);
|
||||
if (enumb == -1) {
|
||||
return Container();
|
||||
}
|
||||
final Editor edt = gm.nthEdt(enumb);
|
||||
// print("GRABBED EDITOR: ${edt.name}");
|
||||
return eid == ""
|
||||
? Container()
|
||||
|
||||
Reference in New Issue
Block a user