aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/gstopwatch.desktop2
-rw-r--r--gstopwatch.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/data/gstopwatch.desktop b/data/gstopwatch.desktop
index 35a7763..d76ba24 100644
--- a/data/gstopwatch.desktop
+++ b/data/gstopwatch.desktop
@@ -2,7 +2,7 @@
Type=Application
Name=Gstopwatch
GenericName=A simple stopwatch, written in GTK3.
-Comment=Start, pause, stop the timer with the ability to save laps
+Comment=Start, pause, stop the timer with the ability to save laps.
Icon=clocks
Terminal=false
Exec=gstopwatch
diff --git a/gstopwatch.c b/gstopwatch.c
index dd35f1b..e6a165e 100644
--- a/gstopwatch.c
+++ b/gstopwatch.c
@@ -167,7 +167,7 @@ int main (int argc, char *argv[]) {
gtk_box_pack_start(GTK_BOX(hbox), button_funcs, TRUE, TRUE, 5);
gtk_container_add(GTK_CONTAINER(vbox), hbox);
gtk_container_add(GTK_CONTAINER(scroll), tree);
- gtk_box_pack_start(GTK_BOX(vbox), scroll, TRUE, TRUE, 5);
+ gtk_box_pack_start(GTK_BOX(vbox), scroll, TRUE, TRUE, 0);
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_title (GTK_WINDOW(window), "Gstopwatch");