Trying to edit and use Glide source

Hi everyone,

I have a question about editing the glide source for use.

I downloaded the source code, made a simple change to KeyboardText.cs:

namespace GHI.Glide.UI
{
    /// <summary>
    /// The KeyboardText component displays multiline wrapping text.
    /// </summary>
    internal class KeyboardText : DisplayObject
    {
        private Color _color = Colors.White;
        private Font _font = FontManager.GetFont(FontManager.FontType.droid_reg24);

All I wanted to do was to make the keyboard printed text a bit bigger for a cp7. Then I built the solution.

In my actual project, I removed the GHI.Glide reference, and then right-clicked, hit “add reference”, browsed for the dll in the release folder of the project I just edited, and added what I thought was the edited glide.

As it turns out, nothing is changing. Am I doing something wrong? I feel like I’m missing a silly simple step here.

Thanks,
Jon

Nevermind. I never got the dll reference working, but it worked just fine when I included the edited glide project into my solution and referenced the project.