eric6/WebBrowser/SpeedDial/PageThumbnailer.py

changeset 8235
78e6d29eb773
parent 8218
7c09585bd960
equal deleted inserted replaced
8234:fcb6b4b96274 8235:78e6d29eb773
86 """ 86 """
87 Public method to get the title of the thumbnail. 87 Public method to get the title of the thumbnail.
88 88
89 @return title of the thumbnail (string) 89 @return title of the thumbnail (string)
90 """ 90 """
91 if self.__title: 91 title = self.__title if self.__title else self.__url.host()
92 title = self.__title
93 else:
94 title = self.__url.host()
95 if not title: 92 if not title:
96 title = self.__url.toString() 93 title = self.__url.toString()
97 return title 94 return title
98 95
99 def start(self): 96 def start(self):

eric ide

mercurial