The Birdfont Source Code
Fix scrollbas in file dialog tab and update image selection expander
These changes was commited to the Birdfont repository Fri, 25 Dec 2015 11:24:06 +0000.
Contributing
Send patches or pull requests to johan.mattsson.m@gmail.com.
Clone this repository: git clone https://github.com/johanmattssonm/birdfont.git
Fix scrollbas in file dialog tab and update image selection expander
--- a/libbirdfont/BackgroundTools.vala
+++ b/libbirdfont/BackgroundTools.vala
@@ -112,6 +112,7 @@
add_part (selection);
}
+ parts.clear_cache ();
parts.redraw ();
}
--- a/libbirdfont/FileDialogTab.vala
+++ b/libbirdfont/FileDialogTab.vala
@@ -260,6 +260,8 @@
action.file_selected ((!) f.get_path ());
}
}
+
+ MainWindow.show_scrollbar ();
}
public override string get_label () {
@@ -273,6 +275,7 @@
public override void button_release (int button, double ex, double ey) {
base.button_release (button, ex, ey);
show_text_area (selected_filename);
+ MainWindow.show_scrollbar ();
}
class SelectedFile : GLib.Object {