Skip to content
GitLab
Explorer
Connexion
Navigation principale
Rechercher ou aller à…
Projet
Aegisub
Gestion
Activité
Membres
Labels
Programmation
Tickets
Tableaux des tickets
Jalons
Wiki
Code
Requêtes de fusion
Dépôt
Branches
Validations
Étiquettes
Graphe du dépôt
Comparer les révisions
Extraits de code
Déploiement
Releases
Registre de paquets
Registre de conteneurs
Registre de modèles
Opération
Modules Terraform
Surveillance
Incidents
Analyse
Données d'analyse des chaînes de valeur
Analyse des contributeurs
Données d'analyse du dépôt
Expériences du modèle
Aide
Aide
Support
Documentation de GitLab
Comparer les forfaits GitLab
Forum de la communauté GitLab
Contribuer à GitLab
Donner votre avis
Raccourcis clavier
?
Extraits de code
Groupes
Projets
Ce projet est archivé. Le dépôt et les autres ressources du projet sont en lecture seule.
Afficher davantage de fils d'Ariane
Kubat
Aegisub
Validations
da3e7e4d
Valider
da3e7e4d
rédigé
Il y a 14 ans
par
Thomas Goyne
Parcourir les fichiers
Options
Téléchargements
Correctifs
Plain Diff
Only register the assdraw command on windows when assdraw is present
Originally committed to SVN as r5479.
parent
3d22da9f
Branches
Branches contenant la validation
Étiquettes
Étiquettes contenant la validation
Aucune requête de fusion associée trouvée
Modifications
1
Afficher les modifications d'espaces
En ligne
Côte à côte
Affichage de
1 fichier modifié
aegisub/src/command/tool.cpp
+6
-2
6 ajouts, 2 suppressions
aegisub/src/command/tool.cpp
avec
6 ajouts
et
2 suppressions
aegisub/src/command/tool.cpp
+
6
−
2
Voir le fichier @
da3e7e4d
...
@@ -73,7 +73,7 @@ struct tool_assdraw : public Command {
...
@@ -73,7 +73,7 @@ struct tool_assdraw : public Command {
STR_HELP
(
"Launch ASSDraw3 tool for vector drawing."
)
STR_HELP
(
"Launch ASSDraw3 tool for vector drawing."
)
void
operator
()(
agi
::
Context
*
c
)
{
void
operator
()(
agi
::
Context
*
c
)
{
wxExecute
(
_T
(
"
\"
"
)
+
StandardPaths
::
DecodePath
(
_T
(
"?data/ASSDraw3.exe"
)
)
+
_T
(
"
\"
"
)
)
;
wxExecute
(
"
\"
"
+
StandardPaths
::
DecodePath
(
"?data/ASSDraw3.exe"
)
+
"
\"
"
);
}
}
};
};
...
@@ -207,7 +207,6 @@ struct tool_translation_assistant : public Command {
...
@@ -207,7 +207,6 @@ struct tool_translation_assistant : public Command {
namespace
cmd
{
namespace
cmd
{
void
init_tool
()
{
void
init_tool
()
{
reg
(
new
tool_assdraw
);
reg
(
new
tool_export
);
reg
(
new
tool_export
);
reg
(
new
tool_font_collector
);
reg
(
new
tool_font_collector
);
reg
(
new
tool_line_select
);
reg
(
new
tool_line_select
);
...
@@ -217,5 +216,10 @@ namespace cmd {
...
@@ -217,5 +216,10 @@ namespace cmd {
reg
(
new
tool_time_kanji
);
reg
(
new
tool_time_kanji
);
reg
(
new
tool_time_postprocess
);
reg
(
new
tool_time_postprocess
);
reg
(
new
tool_translation_assistant
);
reg
(
new
tool_translation_assistant
);
#ifdef __WINDOWS__
if
(
wxFileName
::
FileExists
(
StandardPaths
::
DecodePath
(
"?data/ASSDraw3.exe"
)))
{
reg
(
new
tool_assdraw
);
}
#endif
}
}
}
}
Ce diff est replié.
Cliquez pour l'agrandir.
Aperçu
0%
Chargement en cours
Veuillez réessayer
ou
joindre un nouveau fichier
.
Annuler
You are about to add
0
people
to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Enregistrer le commentaire
Annuler
Veuillez vous
inscrire
ou vous
se connecter
pour commenter