[Gnucash-changes] r13320 - gnucash/trunk - Remove forced screen updates that are no longer necessary.

David Hampton hampton at cvs.gnucash.org
Mon Feb 20 11:11:07 EST 2006


Author: hampton
Date: 2006-02-20 11:11:06 -0500 (Mon, 20 Feb 2006)
New Revision: 13320
Trac: http://svn.gnucash.org/trac/changeset/13320

Modified:
   gnucash/trunk/ChangeLog
   gnucash/trunk/src/gnome/gnc-plugin-page-register.c
Log:
Remove forced screen updates that are no longer necessary.


Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2006-02-20 16:02:06 UTC (rev 13319)
+++ gnucash/trunk/ChangeLog	2006-02-20 16:11:06 UTC (rev 13320)
@@ -1,5 +1,8 @@
 2006-02-20  David Hampton  <hampton at employees.org>
 
+	* src/gnome/gnc-plugin-page-register.c: Remove forced screen
+	updates that are no longer necessary.
+
 	* src/register/register-gnome/gnucash-sheet.c: If the number of
 	"visible to the user" lines in the register has shrunk, force the
 	parent widget to redraw.  This fixes #328787.

Modified: gnucash/trunk/src/gnome/gnc-plugin-page-register.c
===================================================================
--- gnucash/trunk/src/gnome/gnc-plugin-page-register.c	2006-02-20 16:02:06 UTC (rev 13319)
+++ gnucash/trunk/src/gnome/gnc-plugin-page-register.c	2006-02-20 16:11:06 UTC (rev 13320)
@@ -1103,9 +1103,6 @@
     xaccQueryAddClearedMatch(query, priv->fd.cleared_match, QUERY_AND);
 
   gnc_ledger_display_refresh (priv->ledger);
-  /* The register widget doesn't seem to clean up when it shrinks.
-   * Redraw the entire widget so the screen looks clean. */
-  gtk_widget_queue_draw(priv->widget);
   LEAVE(" ");
 }
 
@@ -1158,9 +1155,6 @@
   }
 
   gnc_ledger_display_refresh (priv->ledger);
-  /* The register widget doesn't seem to clean up when it shrinks.
-   * Redraw the entire widget so the screen looks clean. */
-  gtk_widget_queue_draw(priv->widget);
   LEAVE(" ");
 }
 
@@ -2109,10 +2103,6 @@
   priv = GNC_PLUGIN_PAGE_REGISTER_GET_PRIVATE(plugin_page);
   value = gtk_radio_action_get_current_value(current);
   gnc_split_reg_change_style(priv->gsr, value);
-
-  /* The register widget doesn't seem to clean up when it shrinks.
-   * Redraw the entire widget so the screen looks clean. */
-  gtk_widget_queue_draw(priv->widget);
   LEAVE(" ");
 }
 



More information about the gnucash-changes mailing list