コード例 #1
0
ファイル: mtp_config.py プロジェクト: siebert/calibre
 def browse(self):
     b = Browser(self.device.filesystem_cache,
                 show_files=False,
                 parent=self)
     if b.exec_() == b.Accepted and b.current_item is not None:
         sid, path = b.current_item
         self.folder.setText('/'.join(path[1:]))
コード例 #2
0
ファイル: mtp_config.py プロジェクト: hashken/calibre
 def browse(self):
     b = Browser(self.device.filesystem_cache, show_files=False, parent=self)
     if b.exec_() == b.Accepted and b.current_item is not None:
         sid, path = b.current_item
         self.folder.setText("/".join(path[1:]))