瀏覽代碼

remove line break in method

DaidoujiChen 12 年之前
父節點
當前提交
4206a3a5f9
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      Classes/Editing/Argument Input Views/FLEXArgumentInputFontsPickerView.m

+ 1 - 3
Classes/Editing/Argument Input Views/FLEXArgumentInputFontsPickerView.m

@@ -35,9 +35,7 @@
     if ([self.availableFonts indexOfObject:inputValue] == NSNotFound) {
         [self.availableFonts insertObject:inputValue atIndex:0];
     }
-    [(UIPickerView*)self.inputTextView.inputView selectRow:[self.availableFonts indexOfObject:inputValue]
-                                               inComponent:0
-                                                  animated:NO];
+    [(UIPickerView*)self.inputTextView.inputView selectRow:[self.availableFonts indexOfObject:inputValue] inComponent:0 animated:NO];
 }
 
 - (id)inputValue