diff --git a/commands/FBComponentCommands.py b/commands/FBComponentCommands.py index c51ef6b..179f55e 100644 --- a/commands/FBComponentCommands.py +++ b/commands/FBComponentCommands.py @@ -64,17 +64,7 @@ def name(self): return 'rcomponents' def description(self): - return 'Synchronously reflow and update root components found starting from .' - - def options(self): - return [ fb.FBCommandArgument(short='-u', long='--up', arg='upwards', boolean=True, default=False, help='Reflow only the root components found on the first superview that has them, carrying the search up to its window.') ] - - def args(self): - return [ fb.FBCommandArgument(arg='aView', type='UIView*', help='The view to from which the search for the root components begins.', default='(id)[[UIApplication sharedApplication] keyWindow]') ] + return 'Synchronously reflow and update all components.' def run(self, arguments, options): - upwards = 'NO' - if options.upwards: - upwards = 'YES' - - fb.evaluateEffect('[CKComponentDebugController reflowComponentsForView:(UIView *)' + arguments[0] + ' searchUpwards:' + upwards + ']') + fb.evaluateEffect('[CKComponentDebugController reflowComponents]')