~cjcurran/gnome-control-center/make-new-panel

« back to all changes in this revision

Viewing changes to shell/gnome-control-center.c

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-01-23 15:11:19 UTC
  • Revision ID: package-import@ubuntu.com-20120123151119-mm1xi8mdh2m5brz0
Tags: 1:3.2.2-2ubuntu2
* debian/libgnome-control-center1.symbols: restore the symbols tracking, 
  since we build external capplets we better check they don't break
* debian/rules: don't build shlibs for a library which stopped being 
  distributed in GNOME3
* debian/patches/94_git_adding_shortcuts.patch:
  - let add custom shortcuts in any categorie
* debian/patches/95_git_ctrlw_shortcut.patch:
  - ctrl-W close capplets and go back to the overwiew (lp: #863549) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1063
1063
            g_object_unref (self);
1064
1064
            retval = TRUE;
1065
1065
            break;
 
1066
          case GDK_KEY_W:
 
1067
          case GDK_KEY_w:
 
1068
            if (gtk_notebook_get_current_page (GTK_NOTEBOOK (self->priv->notebook)) != OVERVIEW_PAGE)
 
1069
              shell_show_overview_page (self->priv);
 
1070
            retval = TRUE;
 
1071
            break;
1066
1072
        }
1067
1073
    }
1068
1074
  return retval;