no message
This commit is contained in:
parent
433cbbacfd
commit
10af444aed
@ -2,6 +2,18 @@
|
|||||||
|
|
||||||
import inkex
|
import inkex
|
||||||
|
|
||||||
|
"""
|
||||||
|
Extension for InkScape 1.0
|
||||||
|
|
||||||
|
This extension is totally minimal. It will just clean the whole document from groups without content (dangling groups). That usually happens if you have a group but remove it's paths for example. The group will possibly stay in the XML tree. This also applies for layers because layers are just special types of groups. This effect applies to the whole document ONLY!
|
||||||
|
|
||||||
|
Author: Mario Voigt / FabLab Chemnitz
|
||||||
|
Mail: mario.voigt@stadtfabrikanten.org
|
||||||
|
Date: 19.08.2020
|
||||||
|
Last Patch: 23.08.2020
|
||||||
|
License: GNU GPL v3
|
||||||
|
"""
|
||||||
|
|
||||||
class CleanGroups(inkex.Effect):
|
class CleanGroups(inkex.Effect):
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
@ -2,8 +2,6 @@
|
|||||||
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
||||||
<name>Ungrouper And Element Migrator/Filter</name>
|
<name>Ungrouper And Element Migrator/Filter</name>
|
||||||
<id>fablabchemnitz.de.migrategroups</id>
|
<id>fablabchemnitz.de.migrategroups</id>
|
||||||
|
|
||||||
<label appearance="header">Ungrouper / Element Migrator</label>
|
|
||||||
<label>Running this extension works for current selection or if nothing is selected for whole document. It allows to flatten elements into one group and to drop elements while processing. Some element IDs might change while doing.</label>
|
<label>Running this extension works for current selection or if nothing is selected for whole document. It allows to flatten elements into one group and to drop elements while processing. Some element IDs might change while doing.</label>
|
||||||
<label>Enable the checkbox "Ignore custom element types" to ignore custom selections, or disable it and select items you want to drop while ungrouping. Unchecked elements will be dropped.</label>
|
<label>Enable the checkbox "Ignore custom element types" to ignore custom selections, or disable it and select items you want to drop while ungrouping. Unchecked elements will be dropped.</label>
|
||||||
<separator/>
|
<separator/>
|
||||||
|
Reference in New Issue
Block a user