little bugfix. text in the working area is not selectable anymore.

This commit is contained in:
Teja 2015-08-07 16:37:12 +02:00
parent 572425b52b
commit 18fc2fd68e

View file

@ -28,6 +28,14 @@ table th.settings_plugin_svgtogcode_profiles_key,table td.settings_plugin_svgtog
}
.slider_manual_input.noleftspace{
margin-left: 0em;
}
svg text {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
cursor: default;
pointer-events: none;
}