~ubuntu-branches/ubuntu/lucid/f-spot/lucid-proposed

« back to all changes in this revision

Viewing changes to src/Widgets/IconView.cs

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane
  • Date: 2009-11-05 17:17:47 UTC
  • mfrom: (1.3.4 upstream) (2.4.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091105171747-b8hjs4tdlundrp1v
Tags: 0.6.1.5-0ubuntu1
* Fakesync to Karmic from Debian unstable
* New upstream release 0.6.1.5
 - make IconView responsive to mouseclicks on gdk 2.18 (LP: #448162)
 - do not ignore .rw2 files
 - avoid an Array.OORE on empty dbs (Mike Gemuende)

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
 
214
214
                        Destroyed += HandleDestroyed;
215
215
 
216
 
                        AddEvents ((int) EventMask.KeyPressMask
217
 
                        | (int) EventMask.KeyReleaseMask
218
 
                        | (int) EventMask.PointerMotionMask);
 
216
                        AddEvents (
 
217
                                (int) EventMask.KeyPressMask
 
218
                                | (int) EventMask.KeyReleaseMask
 
219
                                | (int) EventMask.PointerMotionMask
 
220
                                | (int) EventMask.ButtonPressMask
 
221
                                | (int) EventMask.ButtonReleaseMask);
219
222
 
220
223
                        CanFocus = true;
221
224