Remove unused code

Whatever this was, its not used since 4 years
see 8f71d9f219
This commit is contained in:
Philipp Hörist 2017-08-23 18:34:17 +02:00
parent 1750217e7f
commit 00e72b1d73
1 changed files with 0 additions and 30 deletions

View File

@ -220,8 +220,6 @@ class ConversationTextview(GObject.GObject):
id_ = self.tv.connect('button_press_event',
self.on_textview_button_press_event)
self.handlers[id_] = self.tv
id_ = self.tv.connect('draw', self.on_textview_draw)
self.handlers[id_] = self.tv
self.account = account
self.cursor_changed = False
@ -520,34 +518,6 @@ class ConversationTextview(GObject.GObject):
# appeared)
GLib.idle_add(self.scroll_to_end_iter)
def on_textview_draw(self, widget, ctx):
return
#TODO
expalloc = event.area
exp_x0 = expalloc.x
exp_y0 = expalloc.y
exp_x1 = exp_x0 + expalloc.width
exp_y1 = exp_y0 + expalloc.height
try:
tryfirst = [self.image_cache[(exp_x0, exp_y0)]]
except KeyError:
tryfirst = []
for image in tryfirst + self.images:
imgalloc = image.allocation
img_x0 = imgalloc.x
img_y0 = imgalloc.y
img_x1 = img_x0 + imgalloc.width
img_y1 = img_y0 + imgalloc.height
if img_x0 <= exp_x0 and img_y0 <= exp_y0 and \
exp_x1 <= img_x1 and exp_y1 <= img_y1:
self.image_cache[(img_x0, img_y0)] = image
widget.propagate_expose(image, event)
return True
return False
def clear(self, tv = None):
"""
Clear text in the textview