Where's the latest stable version of Inkscape for PL528?

Word processors, spreadsheets, presentations, translation, etc.
Post Reply
Message
Author
User avatar
Semme
Posts: 8399
Joined: Sun 07 Aug 2011, 20:07
Location: World_Hub

#16 Post by Semme »

Correct! There's a delay upon opening. Ignore the shell message.

Unless the program fails to comply with what's intended- ENJOY!

==

# Aha! A GTK related bug that doesn't appear to have escaped..

Code: Select all

From ba3e997daea267b100988ecd7c6d0767c334dfbc Mon Sep 17 00:00:00 2001
From: Benjamin Otte <otte@redhat.com>
Date: Mon, 03 May 2010 16:22:42 +0000
Subject: Make toolbutton not call functions on non-GtkMisc

---
diff --git a/gtk/gtktoolbutton.c b/gtk/gtktoolbutton.c
index 4225401..0e6ae59 100644
--- a/gtk/gtktoolbutton.c
+++ b/gtk/gtktoolbutton.c
@@ -470,11 +470,11 @@ gtk_tool_button_construct_contents (GtkToolItem *tool_item)
 	  gtk_widget_show (icon);
 	}
 
-      if (icon && text_orientation == GTK_ORIENTATION_HORIZONTAL)
+      if (GTK_IS_MISC (icon) && text_orientation == GTK_ORIENTATION_HORIZONTAL)
 	gtk_misc_set_alignment (GTK_MISC (icon),
 				1.0 - gtk_tool_item_get_text_alignment (GTK_TOOL_ITEM (button)),
 				0.5);
-      else if (icon)
+      else if (GTK_IS_MISC (icon))
 	gtk_misc_set_alignment (GTK_MISC (icon),
 				0.5,
 				gtk_tool_item_get_text_alignment (GTK_TOOL_ITEM (button)));
--
cgit v0.9.2

User avatar
benny7440
Posts: 440
Joined: Mon 20 Apr 2009, 04:23

SOLVED

#17 Post by benny7440 »

This's to state that as far as I understand this issue I consider it SOLVED!
[b]Toshiba Satellite L555 / ACPI x64-based PC / Intel Core i5 / ~1.46 @ 3 Partitions GB HDD / 4 GB RAM / CD-DVD RW Drive.
[/b]

Post Reply