summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ae3943c)
raw | patch | inline | side by side (parent: ae3943c)
author | tweenk <tweenk@users.sourceforge.net> | |
Tue, 9 Dec 2008 02:29:32 +0000 (02:29 +0000) | ||
committer | tweenk <tweenk@users.sourceforge.net> | |
Tue, 9 Dec 2008 02:29:32 +0000 (02:29 +0000) |
input devices.
src/preferences.cpp | patch | blob | history |
diff --git a/src/preferences.cpp b/src/preferences.cpp
index 76edc2f7c54c7d2ae9c3dbaa312166d154cc874a..ea3c015efe380acd69fef666c5e1fdc3de27816b 100644 (file)
--- a/src/preferences.cpp
+++ b/src/preferences.cpp
@@ -489,7 +489,8 @@ Inkscape::XML::Node *Preferences::_getNode(Glib::ustring const &pref_key, bool c
{
// verify path
g_assert( pref_key.at(0) == '/' );
- g_assert( pref_key.find('.') == Glib::ustring::npos );
+ // No longer necessary, can cause problems with input devices which have a dot in the name
+ // g_assert( pref_key.find('.') == Glib::ustring::npos );
Inkscape::XML::Node *node = _prefs_doc->root(), *child = NULL;
gchar **splits = g_strsplit(pref_key.data(), "/", 0);