Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (708e0cc847b5a66a7ac0f8caecd3cb3fe6941d91)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (708e0cc847b5a66a7ac0f8caecd3cb3fe6941d91)
  • Date: Tue, 19 Jun 2018 16:33:40 +0000

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

utils/gsimplecal/HISTORY | 3 ++-
utils/gsimplecal/PRE_BUILD | 2 ++
utils/gsimplecal/margin-bottom.patch | 20 ++++++++++++++++++++
3 files changed, 24 insertions(+), 1 deletion(-)

New commits:
commit 708e0cc847b5a66a7ac0f8caecd3cb3fe6941d91
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

gsimplecal: added patch to prettify view with pixel fonts

diff --git a/utils/gsimplecal/HISTORY b/utils/gsimplecal/HISTORY
index a37fa91..282ba6f 100644
--- a/utils/gsimplecal/HISTORY
+++ b/utils/gsimplecal/HISTORY
@@ -1,2 +1,3 @@
2018-06-19 Vlad Glagolev <stealth AT sourcemage.org>
- * DETAILS, DEPENDS, PRE_BUILD: created spell, version 2.1
+ * DETAILS, DEPENDS, PRE_BUILD, margin-bottom.patch: created spell,
+ version 2.1
diff --git a/utils/gsimplecal/PRE_BUILD b/utils/gsimplecal/PRE_BUILD
index 275e6f1..2db40d8 100755
--- a/utils/gsimplecal/PRE_BUILD
+++ b/utils/gsimplecal/PRE_BUILD
@@ -1,4 +1,6 @@
default_pre_build &&
cd "${SOURCE_DIRECTORY}" &&

+patch -p0 < "${SPELL_DIRECTORY}/margin-bottom.patch" &&
+
./autogen.sh
diff --git a/utils/gsimplecal/margin-bottom.patch
b/utils/gsimplecal/margin-bottom.patch
new file mode 100644
index 0000000..17b5867
--- /dev/null
+++ b/utils/gsimplecal/margin-bottom.patch
@@ -0,0 +1,20 @@
+--- src/MainWindow.cpp.orig 2014-12-09 11:50:59.000000000 -0500
++++ src/MainWindow.cpp 2018-06-19 12:28:18.710651146 -0400
+@@ -94,6 +94,7 @@
+ {
+ Config* config = Config::getInstance();
+ gint xpos, ypos;
++ GtkRequisition req;
+ widget = gtk_window_new(GTK_WINDOW_TOPLEVEL);
+
+ gtk_window_set_title(GTK_WINDOW(widget), "gsimplecal");
+@@ -127,6 +128,9 @@
+ timezones = new Timezones();
+ timezones->updateTime();
+ timezones->addToBox(children_box);
++
++ gtk_widget_size_request(children_box, &req);
++ gtk_widget_set_size_request(children_box, -1, req.height + 5);
+ }
+
+ gtk_container_add(GTK_CONTAINER(widget), children_box);



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (708e0cc847b5a66a7ac0f8caecd3cb3fe6941d91), Vlad Glagolev, 06/19/2018

Archive powered by MHonArc 2.6.24.

Top of Page