The Birdfont Source Code
Highlight selection in overview
These changes was commited to the Birdfont repository Wed, 15 Jun 2016 14:13:52 +0000.
Contributing
Send patches or pull requests to johan.mattsson.m@gmail.com.
Clone this repository: git clone https://github.com/johanmattssonm/birdfont.git
Highlight selection in overview
--- a/libbirdfont/OverView.vala
+++ b/libbirdfont/OverView.vala
@@ -500,7 +500,9 @@
return selected_item;
}
- return visible_items.get (selected);
+ OverViewItem item = visible_items.get (selected);
+ item.selected = true;
+ return item;
}
int get_items_per_row () {