Compare commits
3 Commits
bdd18fc898
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
2234fd008d
|
|||
|
0fceaf7728
|
|||
|
c46fc73c34
|
@@ -537,6 +537,13 @@ on_show_enter_location(
|
|||||||
g_signal_connect(entry, "changed",
|
g_signal_connect(entry, "changed",
|
||||||
G_CALLBACK(on_enter_location_changed), self);
|
G_CALLBACK(on_enter_location_changed), self);
|
||||||
|
|
||||||
|
GFile *location = fiv_io_model_get_location(self->model);
|
||||||
|
if (location) {
|
||||||
|
gchar *parse_name = g_file_get_parse_name(location);
|
||||||
|
gtk_entry_set_text(GTK_ENTRY(entry), parse_name);
|
||||||
|
g_free(parse_name);
|
||||||
|
}
|
||||||
|
|
||||||
// Can't have it ellipsized and word-wrapped at the same time.
|
// Can't have it ellipsized and word-wrapped at the same time.
|
||||||
GtkWidget *protocols = gtk_label_new("");
|
GtkWidget *protocols = gtk_label_new("");
|
||||||
gtk_label_set_ellipsize(GTK_LABEL(protocols), PANGO_ELLIPSIZE_END);
|
gtk_label_set_ellipsize(GTK_LABEL(protocols), PANGO_ELLIPSIZE_END);
|
||||||
|
|||||||
@@ -130,6 +130,8 @@ setup() {
|
|||||||
--bindir . --libdir . --cross-file="$toolchain" "$builddir" "$sourcedir"
|
--bindir . --libdir . --cross-file="$toolchain" "$builddir" "$sourcedir"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Note: you may need GNU coreutils realpath for non-existent build directories
|
||||||
|
# (macOS and busybox will probably not work).
|
||||||
sourcedir=$(realpath "${2:-$(dirname "$0")}")
|
sourcedir=$(realpath "${2:-$(dirname "$0")}")
|
||||||
builddir=$(realpath "${1:-builddir}")
|
builddir=$(realpath "${1:-builddir}")
|
||||||
toolchain=$builddir/msys2-cross-toolchain.meson
|
toolchain=$builddir/msys2-cross-toolchain.meson
|
||||||
|
|||||||
Submodule submodules/wuffs-mirror-release-c updated: c63c4a9348...50869df0ea
Reference in New Issue
Block a user