~cairo-dock-team/ubuntu/precise/cairo-dock/3.0.0.0rc1

« back to all changes in this revision

Viewing changes to src/gldit/cairo-dock-dialog-manager.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthieu Baerts (matttbe)
  • Date: 2010-09-18 14:17:48 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20100918141748-xehdzux0c21lgejw
Tags: 2.2.0~2-0ubuntu1
* New Upstream Version (LP: #638527)
* Fixed a few bugs:
 - Third-party applets can be deleted if the user switch to offline
 - Fixed a crash when changing the theme
 - Fixed transparency for data-renderer texts
 - Installed in lib/ directory by default for 64bits architecture
 - Fixed the name of applets in the launchers config panel
 - Fixed address of third-party applets in the menu
 - Code cleaning.
* Updated Translations
* debian/patches
 - Updated 01-desktop-file-category.patch (desktop files has changed)
* data/messages: Removed an useless file
* Removed a few useless excecution rights.

Show diffs side-by-side

added added

removed removed

Lines of Context:
261
261
        GdkEventKey *pKey,
262
262
        CairoDialog *pDialog)
263
263
{
264
 
        cd_debug ("key pressed");
265
 
        g_print ("%d / %d\n", pKey->state, GDK_CONTROL_MASK | GDK_MOD1_MASK);
 
264
        cd_debug ("key pressed on dialog: %d / %d", pKey->state, GDK_CONTROL_MASK | GDK_MOD1_MASK);
266
265
        
267
266
        if (pKey->type == GDK_KEY_PRESS && ((pKey->state & (GDK_CONTROL_MASK | GDK_MOD1_MASK | GDK_SHIFT_MASK)) == 0) && pDialog->action_on_answer != NULL)
268
267
        {
269
 
                GdkEventScroll dummyScroll;
270
 
                int iX, iY;
271
268
                switch (pKey->keyval)
272
269
                {
273
270
                        case GDK_Return :