~ubuntu-branches/debian/sid/claws-mail/sid

« back to all changes in this revision

Viewing changes to .pc/11mark_trashed_as_read.patch/src/summaryview.c

  • Committer: Package Import Robot
  • Author(s): Ricardo Mones
  • Date: 2015-08-18 16:37:25 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20150818163725-1it32n9mzqkwy2ef
Tags: 3.12.0-1
* New upstream release:
- 'cannot reorganize mailboxes' (Closes: #777208)
- 'dropdown menu bar has disappeared…'(Closes: #778886)
- 'depends on plugins libraries'  (Closes: #779824)
- 'new upstream version (3.12.0)…' (Closes: #793665)
* 14CVE_2010_5109.patch, 15fix_crash_open_folder.patch,
  13desktop_file_categories.patch
- Remove patches applied upstream
* debian/control, debian/copyright, debian/claws-mail-managesieve*
- Add managesieve plugin (new in this release)
* debian/rules
- Set perl-plugin manpage release version automatically
* 12fix_manpage_header.patch
- Update patch to cope with upstream changes
* debian/control, debian/watch
- Update VCS-* and watch URLs (thanks Julian Wollrath)

Show diffs side-by-side

added added

removed removed

Lines of Context:
461
461
                gtk_cmclist_thaw(GTK_CMCLIST(summaryview->ctree));
462
462
}
463
463
 
 
464
void summary_thaw_with_status(SummaryView *summaryview)
 
465
{
 
466
        if (summaryview) {
 
467
                summary_status_show(summaryview);
 
468
                gtk_cmclist_thaw(GTK_CMCLIST(summaryview->ctree));
 
469
        }
 
470
}
 
471
 
464
472
void summary_grab_focus(SummaryView *summaryview)
465
473
{
466
474
        if (summaryview)
2809
2817
 
2810
2818
                if (summaryview->sort_key == sort_by[type] ||
2811
2819
                    (summaryview->sort_key == SORT_BY_THREAD_DATE &&
2812
 
                     sort_by[SORT_BY_DATE])) {
 
2820
                     sort_by[SORT_BY_DATE] && type == S_COL_DATE)) {
2813
2821
                        arrow = gtk_arrow_new
2814
2822
                                (summaryview->sort_type == SORT_ASCENDING
2815
2823
                                 ? GTK_ARROW_DOWN : GTK_ARROW_UP,
4118
4126
        if (prefs_common.ask_mark_all_read) {
4119
4127
                val = alertpanel_full(_("Mark all as read"),
4120
4128
                        _("Do you really want to mark all mails in this "
4121
 
                          "folder as read?"), GTK_STOCK_NO, _("Mark all as read"), NULL,
 
4129
                          "folder as read?"), GTK_STOCK_NO, GTK_STOCK_YES, NULL,
4122
4130
                          TRUE, NULL, ALERT_QUESTION, G_ALERTDEFAULT);
4123
4131
 
4124
4132
                if ((val & ~G_ALERTDISABLE) != G_ALERTALTERNATE)