Changeset e92e2a1


Ignore:
Timestamp:
Jun 12, 2010, 3:29:01 PM (14 years ago)
Author:
David Benjamin <davidben@mit.edu>
Branches:
master, release-1.10, release-1.7, release-1.8, release-1.9
Children:
044f19f
Parents:
438409f
git-author:
David Benjamin <davidben@mit.edu> (06/12/10 01:38:55)
git-committer:
David Benjamin <davidben@mit.edu> (06/12/10 15:29:01)
Message:
Don't use a signal to connect rightshift

While the signal is cleaner, rightshift should likely be a private
property of owl_mainwin anyway. (Or at least a property of owl_view.)

This is with the goal of removing the dependence on globalnotifier for
the first iteration.
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • global.c

    r07b59ea re92e2a1  
    336336  g->rightshift = i;
    337337  g_object_notify(G_OBJECT(g->gn), "rightshift");
     338
     339  owl_mainwin_redisplay(owl_global_get_mainwin(g));
    338340}
    339341
  • mainwin.c

    r521e600 re92e2a1  
    1414  owl_window_dirty(window);
    1515
    16   /* connect a ton of dependencies */
    17   owl_dirty_window_on_signal(window, g.gn, "notify::rightshift");
     16  /* For now, we do not bother with connecting up dependencies; that'll be a
     17   * future refactor of the mainwin */
    1818}
    1919
Note: See TracChangeset for help on using the changeset viewer.