[chronojump] Compujump personPopup R,L tasks with nicer GUI
- From: Xavier de Blas <xaviblas src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [chronojump] Compujump personPopup R,L tasks with nicer GUI
- Date: Thu, 29 Jun 2017 20:04:48 +0000 (UTC)
commit b3924cad49f0449cd5c50930ec82223530d7cf2e
Author: Xavier de Blas <xaviblas gmail com>
Date: Thu Jun 29 22:03:32 2017 +0200
Compujump personPopup R,L tasks with nicer GUI
src/gui/dialogPersonPopup.cs | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/src/gui/dialogPersonPopup.cs b/src/gui/dialogPersonPopup.cs
index d897534..663c923 100644
--- a/src/gui/dialogPersonPopup.cs
+++ b/src/gui/dialogPersonPopup.cs
@@ -90,11 +90,11 @@ public class DialogPersonPopup
Gtk.HBox hboxRow;
foreach(Task t in tasks)
{
- hboxRow = new Gtk.HBox();
+ hboxRow = new Gtk.HBox(false, 10);
if(t.Laterality == "R,L")
{
- Gtk.VBox vboxRL = new Gtk.VBox(false, 2);
+ Gtk.VBox vboxRL = new Gtk.VBox(false, 4);
Task taskCopy = new Task(t.Id, t.PersonId, t.StationId, t.ExerciseId,
t.ExerciseName,
t.Sets, t.Nreps, t.Load, t.Speed, t.PercentMaxSpeed,
@@ -108,6 +108,8 @@ public class DialogPersonPopup
hboxStartAndLabel = createHBoxStartAndLabel(taskCopy, pixbuf);
vboxRL.PackStart(hboxStartAndLabel, false, false, 0);
+ Gtk.VSeparator vsep = new Gtk.VSeparator();
+ hboxRow.PackStart(vsep, false, false, 0);
hboxRow.PackStart(vboxRL, false, false, 0);
} else {
Gtk.HBox hboxStartAndLabel = createHBoxStartAndLabel(t, pixbuf);
@@ -136,7 +138,7 @@ public class DialogPersonPopup
private Gtk.HBox createHBoxStartAndLabel(Task t, Pixbuf pixbuf)
{
Gtk.Label l = new Gtk.Label(t.ToString());
- HBox hbox = new Gtk.HBox(false, 12);
+ HBox hbox = new Gtk.HBox(false, 10);
Button button_start;
Gtk.Image image = new Gtk.Image();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]