mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-05-04 15:25:08 -04:00
ui cleanup
This commit is contained in:
parent
1f99279cd2
commit
23ec185324
26 changed files with 419 additions and 244 deletions
|
@ -80,6 +80,18 @@ class _DeveloperPageState extends State<DeveloperPage> {
|
|||
return;
|
||||
}
|
||||
|
||||
if (debugCommand.startsWith('change_log_ignore ')) {
|
||||
final args = debugCommand.split(' ');
|
||||
if (args.length < 3) {
|
||||
_debugOut('Incorrect number of arguments');
|
||||
return;
|
||||
}
|
||||
final layer = args[1];
|
||||
final changes = args[2].split(',');
|
||||
Veilid.instance.changeLogIgnore(layer, changes);
|
||||
return;
|
||||
}
|
||||
|
||||
if (debugCommand == 'ellet') {
|
||||
setState(() {
|
||||
_showEllet = !_showEllet;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue