~kunaalus/gtg/gtg

« back to all changes in this revision

Viewing changes to GTG/gtk/browser/CellRendererTags.py

  • Committer: Kunaal
  • Date: 2015-03-12 16:38:40 UTC
  • mfrom: (79.2.10)
  • Revision ID: git-v1:55c0a3105982d0bd808978e799bf6b03453f2ad5
Merge remote-tracking branch 'upstream/master'

Conflicts:
        CHANGELOG
        GTG/plugins/send_email/sendEmail.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# this program.  If not, see <http://www.gnu.org/licenses/>.
18
18
# -----------------------------------------------------------------------------
19
19
 
20
 
#=== IMPORT ===================================================================
21
 
 
22
 
# system imports
23
20
from gi.repository import GObject, GLib, Gtk, Gdk
24
21
import cairo
 
22
 
25
23
from GTG.tools.logger import Log
26
24
 
27
 
#=== MAIN CLASS ===============================================================
28
 
 
29
25
 
30
26
class CellRendererTags(Gtk.CellRenderer):
31
27
    __gproperties__ = {
109
105
            return
110
106
 
111
107
        # Drawing context
112
 
        #cr         = window.cairo_create()
113
 
        #gdkcontext = Gdk.CairoContext(cr)
114
108
        gdkcontext = cr
115
109
        gdkcontext.set_antialias(cairo.ANTIALIAS_NONE)
116
110