[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
gEDA-bug: [Bug 708388] Re: Select all and deselect actions are too slow
I have a note in my local repository which might be relevant to any
debugging you're doing.. you can't tell whether the redraw invalidates
aren't working without a patch like this:
ommit 5219e651bb7ec6a5888d2dcfebd2659651491d5b
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date: Fri Jan 28 01:12:27 2011 +0000
TEMPORARY: Debug redraws by removing updates to status-bar
Changing the status bar text triggers a full-page redraw, don't do it!
diff --git a/gschem/src/i_basic.c b/gschem/src/i_basic.c
index dc3da98..353ca7b 100644
--- a/gschem/src/i_basic.c
+++ b/gschem/src/i_basic.c
@@ -40,6 +40,8 @@
*/
static void i_update_status(GSCHEM_TOPLEVEL *w_current, const char *string)
{
+ return;
+
if (!w_current->status_label)
return;
@@ -568,7 +570,7 @@ void i_update_grid_info (GSCHEM_TOPLEVEL *w_current)
}
print_string = g_strdup_printf(_("Grid(%s, %s)"), snap, grid);
- gtk_label_set(GTK_LABEL(w_current->grid_label), print_string);
+// gtk_label_set(GTK_LABEL(w_current->grid_label), print_string);
g_free(print_string);
g_free(grid);
--
You received this bug notification because you are a member of gEDA Bug
Team, which is subscribed to gEDA.
https://bugs.launchpad.net/bugs/708388
Title:
Select all and deselect actions are too slow
Status in GPL Electronic Design Automation tools:
New
Bug description:
Select/deselect actions in gschem take up to 1 second on a moderately
large schematic (900 lines in saved file).
This is an annoyance and can hamper usability - the user can start
repeating keystrokes or mouse clicks due to lack of feedback.
_______________________________________________
geda-bug mailing list
geda-bug@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-bug